2011-05-17 11:34:18 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-21 17:34:57 +00:00
|
|
|
name = "miniupnpc-1.9.20150730";
|
2011-05-17 11:34:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
2015-09-21 17:34:57 +00:00
|
|
|
sha256 = "0156hssql8iaziwba8ag7y39lchrgwcvlhck2d2qak1vznqzlr0x";
|
2015-05-16 18:34:17 +00:00
|
|
|
name = "${name}.tar.gz";
|
2011-05-17 11:34:18 +00:00
|
|
|
};
|
|
|
|
|
2015-08-12 10:23:30 +00:00
|
|
|
doCheck = true;
|
2011-05-17 11:34:18 +00:00
|
|
|
|
2015-08-12 10:23:30 +00:00
|
|
|
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
|
2011-05-17 11:34:18 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://miniupnp.free.fr/;
|
|
|
|
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
|
2015-05-16 18:34:17 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2011-05-17 11:34:18 +00:00
|
|
|
};
|
|
|
|
}
|