mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: gnunet-gtk: Use new style inputs and gexps.
* gnu/packages/gnunet.scm (gnunet-gtk)[arguments]: Use new style and gexps. [inputs]: Use new style. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
5ef168dfb7
commit
454c973197
1 changed files with 14 additions and 14 deletions
|
@ -446,21 +446,21 @@ (define-public gnunet-gtk
|
||||||
(base32
|
(base32
|
||||||
"0z2731l69vnfsa0cdsw8wh8g1d08wz15y5n0a58qjpf7baric01k"))))
|
"0z2731l69vnfsa0cdsw8wh8g1d08wz15y5n0a58qjpf7baric01k"))))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list #:configure-flags
|
||||||
(list "--with-libunique"
|
#~(list "--with-libunique"
|
||||||
"--with-qrencode"
|
"--with-qrencode"
|
||||||
(string-append "--with-gnunet="
|
(string-append "--with-gnunet="
|
||||||
(assoc-ref %build-inputs "gnunet")))))
|
#$(this-package-input "gnunet")))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("glade3" ,glade3)
|
(list glade3
|
||||||
("gnunet" ,gnunet)
|
gnunet
|
||||||
("gnutls" ,gnutls/dane)
|
gnutls/dane
|
||||||
("gtk+" ,gtk+)
|
gtk+
|
||||||
("libextractor" ,libextractor)
|
libextractor
|
||||||
("libgcrypt" ,libgcrypt)
|
libgcrypt
|
||||||
("libsodium" ,libsodium)
|
libsodium
|
||||||
("libunique" ,libunique)
|
libunique
|
||||||
("qrencode" ,qrencode)))
|
qrencode))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config libglade))
|
(list pkg-config libglade))
|
||||||
(synopsis "Graphical front-end tools for GNUnet")
|
(synopsis "Graphical front-end tools for GNUnet")
|
||||||
|
|
Loading…
Reference in a new issue