mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: polkit: Remove input labels.
* gnu/packages/polkit.scm (polkit-mozjs)[native-inputs]: Remove labels. (polkit-duktape)[native-inputs, inputs]: Use 'modify-inputs'.
This commit is contained in:
parent
69095cde82
commit
c9fcfef3d4
1 changed files with 11 additions and 13 deletions
|
@ -93,12 +93,12 @@ (define-public polkit-mozjs
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list glib)) ; required by polkit-gobject-1.pc
|
(list glib)) ; required by polkit-gobject-1.pc
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
(list pkg-config
|
||||||
("glib:bin" ,glib "bin") ; for glib-mkenums
|
`(,glib "bin") ;for glib-mkenums
|
||||||
("intltool" ,intltool)
|
intltool
|
||||||
("gobject-introspection" ,gobject-introspection)
|
gobject-introspection
|
||||||
("libxslt" ,libxslt) ; for man page generation
|
libxslt ;for man page generation
|
||||||
("docbook-xsl" ,docbook-xsl))) ; for man page generation
|
docbook-xsl)) ;for man page generation
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--sysconfdir=/etc"
|
`(#:configure-flags '("--sysconfdir=/etc"
|
||||||
"--enable-man-pages"
|
"--enable-man-pages"
|
||||||
|
@ -170,13 +170,11 @@ (define-public polkit-duktape
|
||||||
(lambda _
|
(lambda _
|
||||||
(delete-file "configure")))))))
|
(delete-file "configure")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(append `(("autoconf" ,autoconf)
|
(modify-inputs (package-native-inputs base)
|
||||||
("automake" ,automake)
|
(prepend autoconf automake libtool)))
|
||||||
("libtool" ,libtool)
|
(inputs
|
||||||
("pkg-config" ,pkg-config))
|
(modify-inputs (package-inputs base)
|
||||||
(package-native-inputs base)))
|
(replace "mozjs" duktape))))))
|
||||||
(inputs (alist-replace "mozjs" `(,duktape)
|
|
||||||
(package-inputs base))))))
|
|
||||||
|
|
||||||
(define polkit-for-system
|
(define polkit-for-system
|
||||||
(mlambda (system)
|
(mlambda (system)
|
||||||
|
|
Loading…
Reference in a new issue