diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-07-02 00:51:54 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-07-02 20:19:08 +0200 |
commit | 63e708f4681cc8e2bdf2e5b2a3b2599bb823551b (patch) | |
tree | f2bba81c2e34e00ebdcde29ec2b7155f25bf6420 /gnu/packages/games.scm | |
parent | a62764bdbbc3a2bdb50047f861261bcbfd0abd77 (diff) | |
download | patches-63e708f4681cc8e2bdf2e5b2a3b2599bb823551b.tar patches-63e708f4681cc8e2bdf2e5b2a3b2599bb823551b.tar.gz |
gnu: bambam: Don't use unstable tarball.
* gnu/packages/games.scm (bambam)[source]: Use GIT-FETCH.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1559f31797..b3cac4191f 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -3202,13 +3202,14 @@ programmers may also add their own favorite language.") (version "0.6") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/porridge/bambam/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/porridge/bambam") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "05jwhk30pi1iwkfwy707w73c8jgbizqjpgi7y0jhsrx56pxl6mds")))) + "08hcd0gzia3pz7fzk4pqc5kbq1074j4q0jcmbpgvr7n623nj2xa5")))) (build-system python-build-system) (arguments `(#:python ,python-2 |