diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:38:53 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:20 +0200 |
commit | 9c5c944616d35563225f28ae7b0f5bfab25df612 (patch) | |
tree | 3a25a5c113631bcb715367938b1d14b95c45e6d8 /gnu | |
parent | dbbd98b4a5e2b3e3dbc03dfc1c050173d221bf41 (diff) | |
download | guix-9c5c944616d35563225f28ae7b0f5bfab25df612.tar.gz |
gnu: emacs-know-your-http-well: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-know-your-http-well)[source]: Use GIT-FETCH and GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-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 1cedf36114..41eaa00d77 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -10404,14 +10404,13 @@ buffer.") (version "0.5.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/for-GET/know-your-http-well/archive/" - "v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/for-GET/know-your-http-well.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1y3kwz88awcgwaivlswq0q4g2i02762r23lpwg61bfqy5lrjjqnj")))) + (base32 "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k")))) (arguments `(#:phases (modify-phases %standard-phases |