about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/gnunet
diff options
context:
space:
mode:
authorJames Cook <james.cook@utoronto.ca>2014-04-27 22:50:59 -0700
committerJames Cook <james.cook@utoronto.ca>2014-04-27 22:50:59 -0700
commitc372dc74c2bd583d7b05996cb5a9fc8fc8af19bf (patch)
tree65bad197cc06f3c3aea0cdd1de2bd59645c147ab /pkgs/applications/networking/p2p/gnunet
parent39b5a0c3a29ce48d99bb870b5e42cae17e462ce9 (diff)
downloadnixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar.gz
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar.bz2
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar.lz
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar.xz
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.tar.zst
nixlib-c372dc74c2bd583d7b05996cb5a9fc8fc8af19bf.zip
gnunet: add libgnurl and GnuTLS as dependencies
libgnurl is essential for bootstrapping (needed to download a hostlist).
GnuTLS is needed by gnunet-gns-proxy.

Also sort dependencies alphabetically.
Diffstat (limited to 'pkgs/applications/networking/p2p/gnunet')
-rw-r--r--pkgs/applications/networking/p2p/gnunet/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/applications/networking/p2p/gnunet/default.nix b/pkgs/applications/networking/p2p/gnunet/default.nix
index bbb3561bae97..bcd0eb503f60 100644
--- a/pkgs/applications/networking/p2p/gnunet/default.nix
+++ b/pkgs/applications/networking/p2p/gnunet/default.nix
@@ -1,7 +1,6 @@
-{ stdenv, fetchurl, libextractor, libmicrohttpd, libgcrypt
-, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
-, libxml2, ncurses, gettext, libunistring, libidn
-, makeWrapper }:
+{ stdenv, fetchurl, adns, curl, gettext, gmp, gnutls, libextractor
+, libgcrypt, libgnurl, libidn, libmicrohttpd, libtool, libunistring
+, makeWrapper, ncurses, pkgconfig, libxml2, sqlite, zlib }:
 
 stdenv.mkDerivation rec {
   name = "gnunet-0.10.1";
@@ -12,9 +11,9 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [
-    libextractor libmicrohttpd libgcrypt gmp curl libtool
-    zlib adns sqlite libxml2 ncurses libidn
-    pkgconfig gettext libunistring makeWrapper
+    adns curl gettext gmp gnutls libextractor libgcrypt libgnurl libidn
+    libmicrohttpd libtool libunistring libxml2 makeWrapper ncurses
+    pkgconfig sqlite zlib
   ];
 
   preConfigure = ''