diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:36:36 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:18 +0200 |
commit | 2b05c9ad5aa8d8c94ea47117f8703d5f73dd3a93 (patch) | |
tree | 008ecee00b7754147c8c37742b2912afe7da3b6b /gnu/packages/emacs-xyz.scm | |
parent | afca2f41c2034c4c09ed30606cc82fc274338cc3 (diff) | |
download | guix-2b05c9ad5aa8d8c94ea47117f8703d5f73dd3a93.tar.gz guix-2b05c9ad5aa8d8c94ea47117f8703d5f73dd3a93.zip |
gnu: emacs-hierarchy: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-hierarchy)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index f869ab814b..4ab7dbfc3b 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -9519,14 +9519,13 @@ orient yourself in the code, and tell which statements are at a given level.") (version "0.7.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/DamienCassou/hierarchy/archive/" - "v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/DamienCassou/hierarchy.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8")))) + (base32 "1kykbb1sil5cycfa5aj8dhsxc5yrx1641i2np5kwdjid6ahdlz5r")))) (build-system emacs-build-system) (home-page "https://github.com/DamienCassou/hierarchy") (synopsis "Library to create and display hierarchy structures") |