diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-22 16:53:41 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-02-22 17:24:36 +0100 |
commit | 8e6b131baada5873f3fe061975b806695931fb9d (patch) | |
tree | 01d263e8d4dbd5b0e1e0eb8a81a27f3212892216 /gnu | |
parent | e39631a9e19b2f0a253713286aaa1d5c62a95330 (diff) | |
download | guix-8e6b131baada5873f3fe061975b806695931fb9d.tar.gz guix-8e6b131baada5873f3fe061975b806695931fb9d.zip |
gnu: pumpa: Update to 0.9.3.
* gnu/packages/pumpio.scm (pumpa): Update to 0.9.3.
[arguments]: Substitute INVOKE for SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/pumpio.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/pumpio.scm b/gnu/packages/pumpio.scm index e89418b6b1..b8741520f0 100644 --- a/gnu/packages/pumpio.scm +++ b/gnu/packages/pumpio.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 David Thompson <davet@gnu.org> ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -30,7 +31,7 @@ (define-public pumpa (package (name "pumpa") - (version "0.9.2") + (version "0.9.3") (source (origin (method git-fetch) ; no source tarballs (uri (git-reference @@ -38,7 +39,7 @@ (commit (string-append "v" version)))) (sha256 (base32 - "09www29s4ldvd6apr73w7r4nmq93rcl2d182fylwgfcnncbvpy8s")) + "14072vis539zjgryjr5a77j2cprxii5znyg3p01qbb11lijk9nj7")) (file-name (string-append name "-" version "-checkout")))) (build-system gnu-build-system) (arguments @@ -57,7 +58,7 @@ ;; Run qmake with proper installation prefix. (let ((prefix (string-append "PREFIX=" (assoc-ref outputs "out")))) - (zero? (system* "qmake" prefix))) + (invoke "qmake" prefix)) #t))))) (inputs `(("aspell" ,aspell) |