mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: emacs-cyberpunk-theme: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-cyberpunk-theme)[source]: Download using git-fetch.
This commit is contained in:
parent
d1de1ab21a
commit
0dcb8e83f4
1 changed files with 6 additions and 5 deletions
|
@ -8060,13 +8060,14 @@ (define-public emacs-cyberpunk-theme
|
|||
(version "1.19")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/n3mo/cyberpunk-theme.el/"
|
||||
"archive/" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/n3mo/cyberpunk-theme.el/")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32
|
||||
"05l5fxw1mn5py6mfhxrzyqjq0d8m5m1akfi46vrgh13r414jffvv"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))))
|
||||
"1npwrw3pgdmvqhihcqcfi2yrs178iiip5fcj8zhpp6cr9yqsvvgi"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/n3mo/cyberpunk-theme.el")
|
||||
(synopsis "Cyberpunk theme for emacs built-in color theme support")
|
||||
|
|
Loading…
Reference in a new issue