diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-08 23:33:10 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-10 20:54:13 +0200 |
commit | 135ad93e0928d9fbe0530e8665dd5f9ac04eabfd (patch) | |
tree | c68a4bbcdc0d159408df6d5cb1f11acc608e9729 | |
parent | 5180dcb1996a27f54d1398e0c5b9d42263a11285 (diff) | |
download | guix-135ad93e0928d9fbe0530e8665dd5f9ac04eabfd.tar.gz |
gnu: emacs-bongo: Don't use unstable tarball.
* gnu/packages/emacs-xyz.scm (emacs-bongo)[source]: Use GIT-FETCH and GIT-FILE-NAME.
-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 1cb896902f..ac942661de 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8389,14 +8389,13 @@ features and provides Vim-like key bindings.") (version "1.0") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/dbrock/bongo/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/dbrock/bongo.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 - "1pcsyyrvj7djjjwpaswd1i782hvqvlvs39cy9ns0k795si6xd64d")))) + (base32 "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr")))) (build-system emacs-build-system) (home-page "https://github.com/dbrock/bongo") (synopsis "Media player for Emacs") |