miniupnpd: 1.9.20160222 -> 2.0

This commit is contained in:
Tobias Geerinckx-Rice 2016-04-20 22:01:31 +02:00
parent 05a7c34d47
commit 5a6cac7ca4
No known key found for this signature in database
GPG key ID: 91CCDB9B48541B99

View file

@ -3,11 +3,11 @@
assert stdenv.isLinux; assert stdenv.isLinux;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "miniupnpd-1.9.20160222"; name = "miniupnpd-2.0";
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 = "0q694dla4v36qsc0x50xqg2jjhwdi9pl7r2gl10yvhkahxqx1ng7"; sha256 = "1dxzhvkylrnbkd5srb9rb2g4f9ydd1zbjg5sdf190m0g1sha6snr";
name = "${name}.tar.gz"; name = "${name}.tar.gz";
}; };
@ -16,13 +16,14 @@ stdenv.mkDerivation rec {
makefile = "Makefile.linux"; makefile = "Makefile.linux";
buildFlags = "miniupnpd genuuid"; buildFlags = [ "miniupnpd" "genuuid" ];
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)"; installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
meta = { meta = with stdenv.lib; {
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; platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
}; };
} }