aboutsummaryrefslogtreecommitdiffstats
path: root/oni/packages/emacs-inkplate.scm
blob: 0783d6143c218bc22b11bdf6b9dc163ba92aed7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
(define-module (oni packages emacs-inkplate)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (guix git-download)
  #:use-module (guix build-system emacs)
  #:use-module ((guix licenses) #:prefix license:))

(define-public emacs-inkplate
  (let ((commit "0897721a7b3d84aa3f200ae85fddd5fdd370fc42")
        (revision "0"))
    (package
      (name "emacs-inkplate")
      (version (git-version "0.0.1" revision commit))
      (source
       (origin
         (uri (git-reference
               (url "https://git.sr.ht/~ryuslash/inkplatel")
               (commit commit)))
         (method git-fetch)
         (sha256
          (base32 "0mqnpf4vrzn3013pcwcr9150k4jy4klrdg0pd3amhg2y25054w4s"))
         (file-name (git-file-name name version))))
      (build-system emacs-build-system)
      (synopsis "Interface for my Inkplate")
      (description
       "This package provides a way to communicate with Inkplate in peripheral mode.")
      (license license:gpl3+)
      (home-page "https://sr.ht/~ryuslash/inkplate/"))))