remove emacs packages
This commit is contained in:
parent
e3d367afdc
commit
bdf203599f
1 changed files with 0 additions and 82 deletions
|
@ -1,82 +0,0 @@
|
|||
(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))))
|
||||
|
||||
(define-public emacs-treemacs-nerd-icons
|
||||
(let ((commit "9876cb478145a0ec4e36f64ff6583f3de7126216")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-treemacs-nerd-icons")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rainstormstudio/treemacs-nerd-icons")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1xphhxdibjhp27z2lj1nxlxf7cfm8vpi44fr01fk9krqy9vaz0q0"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-treemacs
|
||||
emacs-nerd-icons))
|
||||
(home-page "https://github.com/rainstormstudio/treemacs-nerd-icons")
|
||||
(synopsis "nerd-icons theme for treemacs")
|
||||
(description "nerd-icons theme for treemacs")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public emacs-tab-line-nerd-icons
|
||||
(let ((commit "f0d32a581246d1fe59fb03f37f627e9422d3ae42")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-tab-line-nerd-icons")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/emacsmirror/tab-line-nerd-icons")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1i8fy7v2vi4f1h8bj33i941nwsv0d55j3ajm1qknrmhz4r1q4qha"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-nerd-icons))
|
||||
(home-page "https://github.com/emacsmirror/tab-line-nerd-icons")
|
||||
(synopsis "nerd-icons for tab-line")
|
||||
(description "nerd-icons for tab-line")
|
||||
(license license:gpl3))))
|
Loading…
Add table
Reference in a new issue