gnunet: update to 0.9.5
This commit is contained in:
parent
8a50276bd4
commit
91ece6f0dd
|
@ -1,19 +1,19 @@
|
||||||
{ stdenv, fetchurl, libextractor, libmicrohttpd, libgcrypt
|
{ stdenv, fetchurl, libextractor, libmicrohttpd, libgcrypt
|
||||||
, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
|
, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
|
||||||
, libxml2, ncurses, gettext, libunistring
|
, libxml2, ncurses, gettext, libunistring, libidn
|
||||||
, makeWrapper }:
|
, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnunet-0.9.3";
|
name = "gnunet-0.9.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
||||||
sha256 = "0ppirvwjb7w7270g0w83z6wyk984cnxv2ydxj7qr0j1cz2j6nn2h";
|
sha256 = "162bahbskhzc0b2pda7v36dckm3p5p9rnbv2w0fbl0xl2gln63aa";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libextractor libmicrohttpd libgcrypt gmp curl libtool
|
libextractor libmicrohttpd libgcrypt gmp curl libtool
|
||||||
zlib adns sqlite libxml2 ncurses
|
zlib adns sqlite libxml2 ncurses libidn
|
||||||
pkgconfig gettext libunistring makeWrapper
|
pkgconfig gettext libunistring makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -36,6 +36,10 @@ stdenv.mkDerivation rec {
|
||||||
echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
|
echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
|
||||||
substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
|
substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Ensure NSS installation works fine
|
||||||
|
configureFlags="$configureFlags --with-nssdir=$out/lib"
|
||||||
|
patchShebangs src/gns/nss/install-nss-plugin.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -72,7 +76,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
maintainers = with stdenv.lib.maintainers; [ ludo viric ];
|
||||||
platforms = stdenv.lib.platforms.gnu;
|
platforms = stdenv.lib.platforms.gnu;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue