mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
gnu: pumpa: Update to 0.9.3.
* gnu/packages/pumpio.scm (pumpa): Update to 0.9.3. [arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
e39631a9e1
commit
8e6b131baa
1 changed files with 4 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -30,7 +31,7 @@ (define-module (gnu packages pumpio)
|
||||||
(define-public pumpa
|
(define-public pumpa
|
||||||
(package
|
(package
|
||||||
(name "pumpa")
|
(name "pumpa")
|
||||||
(version "0.9.2")
|
(version "0.9.3")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch) ; no source tarballs
|
(method git-fetch) ; no source tarballs
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -38,7 +39,7 @@ (define-public pumpa
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09www29s4ldvd6apr73w7r4nmq93rcl2d182fylwgfcnncbvpy8s"))
|
"14072vis539zjgryjr5a77j2cprxii5znyg3p01qbb11lijk9nj7"))
|
||||||
(file-name (string-append name "-" version "-checkout"))))
|
(file-name (string-append name "-" version "-checkout"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -57,7 +58,7 @@ (define-public pumpa
|
||||||
;; Run qmake with proper installation prefix.
|
;; Run qmake with proper installation prefix.
|
||||||
(let ((prefix (string-append "PREFIX="
|
(let ((prefix (string-append "PREFIX="
|
||||||
(assoc-ref outputs "out"))))
|
(assoc-ref outputs "out"))))
|
||||||
(zero? (system* "qmake" prefix)))
|
(invoke "qmake" prefix))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("aspell" ,aspell)
|
`(("aspell" ,aspell)
|
||||||
|
|
Loading…
Reference in a new issue