aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/packages/guix/packages/gnunet/packages/gnunet.scm39
1 files changed, 3 insertions, 36 deletions
diff --git a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
index b3b17ada6..574714350 100644
--- a/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
+++ b/contrib/packages/guix/packages/gnunet/packages/gnunet.scm
@@ -51,6 +51,7 @@
51 #:use-module (gnu packages pulseaudio) 51 #:use-module (gnu packages pulseaudio)
52 #:use-module (gnu packages python) 52 #:use-module (gnu packages python)
53 #:use-module (gnu packages tls) 53 #:use-module (gnu packages tls)
54 #:use-module (gnu packages texinfo)
54 #:use-module (gnu packages upnp) 55 #:use-module (gnu packages upnp)
55 #:use-module (gnu packages web) 56 #:use-module (gnu packages web)
56 #:use-module (gnu packages xiph)) 57 #:use-module (gnu packages xiph))
@@ -110,6 +111,7 @@
110 ("autoconf" ,autoconf) 111 ("autoconf" ,autoconf)
111 ("automake" ,automake) 112 ("automake" ,automake)
112 ("gnu-gettext" ,gnu-gettext) 113 ("gnu-gettext" ,gnu-gettext)
114 ("texinfo" ,texinfo)
113 ("libtool" ,libtool))) 115 ("libtool" ,libtool)))
114 (outputs '("out" "debug")) 116 (outputs '("out" "debug"))
115 (arguments 117 (arguments
@@ -331,6 +333,7 @@
331 ("libglade" ,libglade) 333 ("libglade" ,libglade)
332 ("autoconf" ,autoconf) 334 ("autoconf" ,autoconf)
333 ("gnu-gettext" ,gnu-gettext) 335 ("gnu-gettext" ,gnu-gettext)
336 ("texinfo" ,texinfo)
334 ("automake" ,automake) 337 ("automake" ,automake)
335 ("libtool" ,libtool))) 338 ("libtool" ,libtool)))
336 (synopsis "Graphical front-end tools for GNUnet") 339 (synopsis "Graphical front-end tools for GNUnet")
@@ -384,39 +387,3 @@
384 ("libtool" ,libtool))) 387 ("libtool" ,libtool)))
385 (synopsis "FUSE for GNUnet") 388 (synopsis "FUSE for GNUnet")
386 (home-page "https://gnunet.org")))) 389 (home-page "https://gnunet.org"))))
387
388;; A package to run the test suite (with libressl)
389(define-public gnunetgftl
390 (package
391 (inherit gnunetg)
392 (name "gnunetgftl")
393 (inputs
394 `(("glpk" ,glpk)
395 ("gnurl" ,gnurl)
396 ("gstreamer" ,gstreamer)
397 ("gst-plugins-base" ,gst-plugins-base)
398 ("gnutls" ,gnutls)
399 ("libextractor" ,libextractor)
400 ("libgcrypt" ,libgcrypt)
401 ("libidn" ,libidn)
402 ("libmicrohttpd" ,libmicrohttpd)
403 ("libltdl" ,libltdl)
404 ("libunistring" ,libunistring)
405 ("libressl" ,libressl)
406 ("opus" ,opus)
407 ("pulseaudio" ,pulseaudio)
408 ("sqlite" ,sqlite)
409 ("zlib" ,zlib)
410 ("perl" ,perl)
411 ("python" ,python-2) ; tests and gnunet-qr
412 ("postgresql" ,postgresql)
413 ("jansson" ,jansson)
414 ("ncurses" ,ncurses)
415 ("nss" ,nss)
416 ("gmp" ,gmp)
417 ("miniupnpc" ,miniupnpc)
418 ("bluez" ,bluez) ; for optional bluetooth feature
419 ("glib" ,glib)
420 ;; ("texlive-minimal" ,texlive-minimal) ; optional.
421 ("libogg" ,libogg)))
422 (synopsis "gnunet git full with tests and libressl")))