mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-02 16:17:27 +01:00
gnu: perl-ev: Use INVOKE.
* gnu/packages/libevent.scm (perl-ev)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
aadfc7b02b
commit
f16faf0f4f
1 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2017 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.
|
||||||
;;;
|
;;;
|
||||||
|
@ -218,8 +219,8 @@ (define-public perl-ev
|
||||||
;; to build. Unpack system libev here...
|
;; to build. Unpack system libev here...
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(mkdir "./libev")
|
(mkdir "./libev")
|
||||||
(zero? (system* "tar" "-xf" (assoc-ref inputs "libev-source")
|
(invoke "tar" "-xf" (assoc-ref inputs "libev-source")
|
||||||
"-C" "./libev" "--strip-components=1")))))))
|
"-C" "./libev" "--strip-components=1"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("libev-source" ,(package-source libev))
|
`(("libev-source" ,(package-source libev))
|
||||||
("perl-canary-stability" ,perl-canary-stability)))
|
("perl-canary-stability" ,perl-canary-stability)))
|
||||||
|
|
Loading…
Reference in a new issue