about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/gnunet/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-01-18 20:53:00 +0000
committerLudovic Courtès <ludo@gnu.org>2012-01-18 20:53:00 +0000
commited221cf4cc874cf558384d6a09c2ec322eae6414 (patch)
tree2a11a7850d0129f7cdcd2231b5e0fd5022d37ec2 /pkgs/applications/networking/p2p/gnunet/default.nix
parent94a0bbcef32fc0063dbb537492398c902d358609 (diff)
GNUnet 0.9.1.
svn path=/nixpkgs/trunk/; revision=31677
Diffstat (limited to 'pkgs/applications/networking/p2p/gnunet/default.nix')
-rw-r--r--pkgs/applications/networking/p2p/gnunet/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/applications/networking/p2p/gnunet/default.nix b/pkgs/applications/networking/p2p/gnunet/default.nix
index 1219c1763549b..5d5d6128bb420 100644
--- a/pkgs/applications/networking/p2p/gnunet/default.nix
+++ b/pkgs/applications/networking/p2p/gnunet/default.nix
@@ -7,11 +7,11 @@
 assert gtkSupport -> (gtk != null) && (libglade != null);
 
 stdenv.mkDerivation rec {
-  name = "gnunet-0.9.0";
+  name = "gnunet-0.9.1";
 
   src = fetchurl {
     url = "mirror://gnu/gnunet/${name}.tar.gz";
-    sha256 = "1a0faq2j20dxhpdq0lpi8mjhddwmscbaa1bsxk460p5mj8n55i3p";
+    sha256 = "0ipx027lzcgdv70adfk8f4h0zrzm9mlhy3vj9cgc0ck8x52llfpq";
   };
 
   buildInputs = [
@@ -41,9 +41,18 @@ stdenv.mkDerivation rec {
     done
   '';
 
-  # XXX: There are several test failures, forwarded to bug-gnunet@gnu.org.
   doCheck = false;
 
+  /* FIXME: Tests must be run this way, but there are still a couple of
+     failures.
+
+  postInstall =
+    '' export GNUNET_PREFIX="$out"
+       export PATH="$out/bin:$PATH"
+       make -k check
+    '';
+  */
+
   meta = {
     description = "GNUnet, GNU's decentralized anonymous and censorship-resistant P2P framework";