[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: the-butterfly-effect: Don't use unstable tarball.
From: |
guix-commits |
Subject: |
12/13: gnu: the-butterfly-effect: Don't use unstable tarball. |
Date: |
Wed, 20 Nov 2019 03:08:24 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 089c6b0096967ad698fcbb0c89ef9dac1e161a9f
Author: Efraim Flashner <address@hidden>
Date: Tue Nov 19 23:08:23 2019 +0200
gnu: the-butterfly-effect: Don't use unstable tarball.
* gnu/packages/games.scm (the-butterfly-effect)[source]: Download using
git-fetch.
---
gnu/packages/games.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index efe8a6a..e250796 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -5444,14 +5444,14 @@ making Yamagi Quake II one of the most solid Quake II
implementations available.
(version "0.9.3.1")
(source
(origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/the-butterfly-effect/tbe/archive/"
- "v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/the-butterfly-effect/tbe.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
(base32
- "18qkp7fgdvyl3haqqa693mgyic7afsznsxgz98z9wn4csaqxsnby"))))
+ "1ag2cp346f9bz9qy6za6q54id44d2ypvkyhvnjha14qzzapwaysj"))))
(build-system gnu-build-system)
(arguments
`(#:phases
- 07/13: gnu: uefitool: Update to 0.26.0., (continued)
- 07/13: gnu: uefitool: Update to 0.26.0., guix-commits, 2019/11/20
- 09/13: gnu: cmark: Don't use unstable tarball., guix-commits, 2019/11/20
- 10/13: gnu: cmark: Update to 0.29.0., guix-commits, 2019/11/20
- 03/13: gnu: heimdall: Don't use unstable tarball., guix-commits, 2019/11/20
- 01/13: gnu: cowsay: Don't use unstable tarball., guix-commits, 2019/11/20
- 05/13: gnu: me-cleaner: Don't use unstable tarball., guix-commits, 2019/11/20
- 06/13: gnu: uefitool: Don't use unstable tarball., guix-commits, 2019/11/20
- 04/13: gnu: heimdall: Download from new upstream source., guix-commits, 2019/11/20
- 11/13: gnu: laby: Don't use unstable tarball., guix-commits, 2019/11/20
- 13/13: gnu: Register python-3.8 patches., guix-commits, 2019/11/20
- 12/13: gnu: the-butterfly-effect: Don't use unstable tarball.,
guix-commits <=