emacs-nerd-icons-dired
This commit is contained in:
parent
3caf3d17b1
commit
68f549bae2
1 changed files with 33 additions and 0 deletions
33
sakura/packages/emacs-xyz.scm
Normal file
33
sakura/packages/emacs-xyz.scm
Normal file
|
@ -0,0 +1,33 @@
|
|||
(define-module (sakura packages emacs-xyz)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system emacs)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages emacs-xyz)
|
||||
#:use-module (guix utils))
|
||||
|
||||
(define-public emacs-nerd-icons-dired
|
||||
(let ((commit "c0b0cda2b92f831d0f764a7e8c0c6728d6a27774")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-nerd-icons-dired")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rainstormstudio/nerd-icons-dired")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1iwqzh32j6fsx0nl4y337iqkx6prbdv6j83490riraklzywv126a"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-nerd-icons))
|
||||
(home-page "https://github.com/rainstormstudio/nerd-icons-dired")
|
||||
(synopsis "Use nerd-icons for Dired")
|
||||
(description "Use nerd-icons for Dired")
|
||||
(license license:gpl3))))
|
Loading…
Reference in a new issue