mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: emacs-hierarchy: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-hierarchy)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
afca2f41c2
commit
2b05c9ad5a
1 changed files with 6 additions and 7 deletions
|
@ -9519,14 +9519,13 @@ (define-public emacs-hierarchy
|
||||||
(version "0.7.0")
|
(version "0.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/DamienCassou/hierarchy/archive/"
|
(url "https://github.com/DamienCassou/hierarchy.git")
|
||||||
"v" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1kykbb1sil5cycfa5aj8dhsxc5yrx1641i2np5kwdjid6ahdlz5r"))))
|
||||||
"1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
|
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
(home-page "https://github.com/DamienCassou/hierarchy")
|
(home-page "https://github.com/DamienCassou/hierarchy")
|
||||||
(synopsis "Library to create and display hierarchy structures")
|
(synopsis "Library to create and display hierarchy structures")
|
||||||
|
|
Loading…
Reference in a new issue