Add some more Emacs configuration packages
This commit is contained in:
parent
d78f2a5ea2
commit
57c0693306
2 changed files with 64 additions and 50 deletions
|
@ -5,11 +5,11 @@
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (gnu packages emacs-xyz))
|
||||
|
||||
(define-public emacs-oni-vterm
|
||||
(define-public emacs-oni-config
|
||||
(let ((commit "b1c7553275218dd89676a1136a0e0d708acd5bec")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-oni-vterm")
|
||||
(name "emacs-oni-config")
|
||||
(version (git-version "0.0.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
|
@ -21,36 +21,50 @@
|
|||
(sha256
|
||||
(base32 "1977csi34jgvvnsn2bv1rawnw1mqvw2j8i6g9c26l49wp7l63szi"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://sr.ht/~ryuslash/dotfiles/")
|
||||
(synopsis "My Emacs configuration")
|
||||
(description "This package provides my configuration for emacs")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-oni-vterm
|
||||
(package
|
||||
(inherit emacs-oni-config)
|
||||
(name "emacs-oni-vterm")
|
||||
(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+))))
|
||||
(description "This package provides my configuration for emacs-vterm")))
|
||||
|
||||
(define-public emacs-oni-elfeed
|
||||
(let ((commit "b1c7553275218dd89676a1136a0e0d708acd5bec")
|
||||
(revision "0"))
|
||||
(package
|
||||
(inherit emacs-oni-config)
|
||||
(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+))))
|
||||
(description "This package provides my configuration for emacs-elfeed")))
|
||||
|
||||
(define-public emacs-oni-alert
|
||||
(package
|
||||
(inherit emacs-oni-config)
|
||||
(name "emacs-oni-alert")
|
||||
(arguments
|
||||
'(#:include '("oni-alert.el")))
|
||||
(propagated-inputs
|
||||
`(("emacs-alert" ,emacs-alert)))
|
||||
(synopsis "My Emacs alert configuration")
|
||||
(description "This package provides my configuration for emacs-alert")))
|
||||
|
||||
(define-public emacs-oni-bookmark
|
||||
(package
|
||||
(inherit emacs-oni-config)
|
||||
(name "emacs-oni-bookmark")
|
||||
(arguments
|
||||
'(#:include '("oni-bookmark.el")))
|
||||
(synopsis "My Emacs bookmark configuration")
|
||||
(description "This package provides my configuration for the bookmark library
|
||||
in Emacs")))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
(define-module (oni packages emacs-inkplate)
|
||||
(define-module (oni packages emacs)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix git-download)
|
||||
|
|
Loading…
Reference in a new issue