GNUnet 0.9.1.
svn path=/nixpkgs/trunk/; revision=31677
This commit is contained in:
parent
94a0bbcef3
commit
ed221cf4cc
1 changed files with 12 additions and 3 deletions
|
@ -7,11 +7,11 @@
|
||||||
assert gtkSupport -> (gtk != null) && (libglade != null);
|
assert gtkSupport -> (gtk != null) && (libglade != null);
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnunet-0.9.0";
|
name = "gnunet-0.9.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
||||||
sha256 = "1a0faq2j20dxhpdq0lpi8mjhddwmscbaa1bsxk460p5mj8n55i3p";
|
sha256 = "0ipx027lzcgdv70adfk8f4h0zrzm9mlhy3vj9cgc0ck8x52llfpq";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -41,9 +41,18 @@ stdenv.mkDerivation rec {
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# XXX: There are several test failures, forwarded to bug-gnunet@gnu.org.
|
|
||||||
doCheck = false;
|
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 = {
|
meta = {
|
||||||
description = "GNUnet, GNU's decentralized anonymous and censorship-resistant P2P framework";
|
description = "GNUnet, GNU's decentralized anonymous and censorship-resistant P2P framework";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue