diff options
author | Kei Kebreau <kei@openmailbox.org> | 2017-08-06 14:08:02 -0400 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-08-06 14:13:07 -0400 |
commit | b0c95908c02d5ed6fb7d591ebdba7287d778ea03 (patch) | |
tree | 2b5026dddb9a0ef54ff3ea6a8641354f006bfe65 /gnu | |
parent | f7b60fdc361d672ce861afcb27db8e5e247d2777 (diff) | |
download | guix-b0c95908c02d5ed6fb7d591ebdba7287d778ea03.tar guix-b0c95908c02d5ed6fb7d591ebdba7287d778ea03.tar.gz |
gnu: freedoom: Update to 0.11.3.
* gnu/packages/games.scm (freedoom): Update to 0.11.3.
[arguments]: Remove unnecessary "no" phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 3093b77aea..408b3b46d0 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -283,7 +283,7 @@ cows can think too. All you have to do is run @code{cowthink}.") (define-public freedoom (package (name "freedoom") - (version "0.11.2") + (version "0.11.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/" name "/" name @@ -291,7 +291,7 @@ cows can think too. All you have to do is run @code{cowthink}.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0b9k61f97spivi75f76zwwg8a3bgc6iil2hidqfj8s50lhqggwbb")))) + "1bjijdfqhpazyifx1qda7scj7dry1azhjrnl8h8zn2vqfgdmlh0q")))) (build-system gnu-build-system) (arguments '(#:make-flags `(,(string-append "prefix=" (assoc-ref %outputs "out"))) @@ -299,7 +299,6 @@ cows can think too. All you have to do is run @code{cowthink}.") #:tests? #f ; no check target #:phases (modify-phases %standard-phases - (add-before 'unpack 'no (lambda _ #t)) (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((dejavu (assoc-ref inputs "font-dejavu")) |