gnu: libsoup: Use invoke.

* gnu/packages/gnome.scm (libsoup)[arguments]: Use invoke in the custom
install phase.
master
Mark H Weaver 2018-03-23 03:01:19 -04:00
parent 257d8974e6
commit 4bd9f46553
No known key found for this signature in database
GPG Key ID: 7CEF29847562C516
1 changed files with 5 additions and 6 deletions

View File

@ -2539,12 +2539,11 @@ libxml to ease remote use of the RESTful API.")
#t))
(replace 'install
(lambda _
(zero?
(system* "make"
;; Install vala bindings into $out.
(string-append "vapidir=" %output
"/share/vala/vapi")
"install")))))))
(invoke "make"
;; Install vala bindings into $out.
(string-append "vapidir=" %output
"/share/vala/vapi")
"install"))))))
(native-inputs
`(("glib:bin" ,glib "bin") ; for glib-mkenums
("gobject-introspection" ,gobject-introspection)