56 lines
2 KiB
Scheme
56 lines
2 KiB
Scheme
(define-module (oni packages emacs-config)
|
|
#:use-module (guix packages)
|
|
#:use-module (guix git-download)
|
|
#:use-module (guix build-system emacs)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (gnu packages emacs-xyz))
|
|
|
|
(define-public emacs-oni-vterm
|
|
(let ((commit "b1c7553275218dd89676a1136a0e0d708acd5bec")
|
|
(revision "0"))
|
|
(package
|
|
(name "emacs-oni-vterm")
|
|
(version (git-version "0.0.1" revision commit))
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://git.sr.ht/~ryuslash/emacs-config")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1977csi34jgvvnsn2bv1rawnw1mqvw2j8i6g9c26l49wp7l63szi"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
'(#:include '("oni-vterm.el")))
|
|
(propagated-inputs
|
|
`(("emacs-vterm" ,emacs-vterm)))
|
|
(home-page "https://git.sr.ht/~ryuslash/emacs-config")
|
|
(synopsis "My Emacs vterm configuration")
|
|
(description "This package provides my configuration for emacs-vterm")
|
|
(license license:gpl3+))))
|
|
|
|
(define-public emacs-oni-elfeed
|
|
(let ((commit "b1c7553275218dd89676a1136a0e0d708acd5bec")
|
|
(revision "0"))
|
|
(package
|
|
(name "emacs-oni-elfeed")
|
|
(version (git-version "0.0.1" revision commit))
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri (git-reference
|
|
(url "https://git.sr.ht/~ryuslash/emacs-config")
|
|
(commit commit)))
|
|
(file-name (git-file-name name version))
|
|
(sha256
|
|
(base32 "1977csi34jgvvnsn2bv1rawnw1mqvw2j8i6g9c26l49wp7l63szi"))))
|
|
(build-system emacs-build-system)
|
|
(arguments
|
|
'(#:include '("oni-elfeed.el")))
|
|
(propagated-inputs
|
|
`(("emacs-elfeed" ,emacs-elfeed)))
|
|
(home-page "https://git.sr.ht/~ryuslash/emacs-config")
|
|
(synopsis "My Emacs elfeed configuration")
|
|
(description "This package provides my configuration for emacs-elfeed")
|
|
(license license:gpl3+))))
|