2021-06-13 07:13:38 +02:00
|
|
|
(define-module (oni packages emacs)
|
2021-05-25 05:28:39 +02:00
|
|
|
#: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
|
2021-06-13 07:13:38 +02:00
|
|
|
(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/"))))
|