miniupnp{c,d}: bump
This commit is contained in:
parent
7108ba5f6e
commit
ea2c17571d
|
@ -1,11 +1,12 @@
|
||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "miniupnpc-1.7";
|
name = "miniupnpc-1.9.20150430";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
||||||
sha256 = "0dv3mz4yikngmlnrnmh747mlgbbpijryw03wcs8g4jwvprb29p8n";
|
sha256 = "0ivnvzla0l2pzmy8s0j8ss0fnpsii7z9scvyl4a13g9k911hgmvn";
|
||||||
|
name = "${name}.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
|
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
|
||||||
|
@ -19,5 +20,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://miniupnp.free.fr/;
|
homepage = http://miniupnp.free.fr/;
|
||||||
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
|
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,11 +3,12 @@
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "miniupnpd-1.8.20140401";
|
name = "miniupnpd-1.9.20150430";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
||||||
sha256 = "1gfdbfqcw6ih830si51yzqbyymgcbwkiv9vk5dwnxs78b7xgyv88";
|
sha256 = "0ajqs3lf2cgq5fm1v79fa23sbb623i89sqnx7d9cnqbqq5py1k71";
|
||||||
|
name = "miniupnpd-1.9.20150430.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ iptables libnfnetlink ];
|
buildInputs = [ iptables libnfnetlink ];
|
||||||
|
@ -27,5 +28,6 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://miniupnp.free.fr/;
|
homepage = http://miniupnp.free.fr/;
|
||||||
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
|
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue