diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-31 03:49:57 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:53:58 +0200 |
commit | 09059c111836fdf30a5afed919e0101c6e8b63f7 (patch) | |
tree | 7379d18a6f66765c372346b7ff5c22342a62f343 /gnu/packages | |
parent | 353fea6ab71fbeaea1866101d0929bf58263b75d (diff) | |
download | guix-09059c111836fdf30a5afed919e0101c6e8b63f7.tar.gz guix-09059c111836fdf30a5afed919e0101c6e8b63f7.zip |
gnu: emacs-espuds: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-espuds)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 662d415946..b80245a6a1 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -2128,13 +2128,13 @@ Expectations, but it can be used in other contexts.") (version "0.3.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/ecukes/espuds/" - "archive/v" version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ecukes/espuds.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 - "0xv551376pbmh735a3zjwc9z4qdx6ngj1vpq3xqjpn0a1rwjyn4k")))) + (base32 "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg")))) (build-system emacs-build-system) (propagated-inputs `(("emacs-s" ,emacs-s) |