2016-02-15 00:18:35 +00:00
|
|
|
{ stdenv, fetchurl, iptables, libuuid, pkgconfig }:
|
2010-05-20 23:11:44 +01:00
|
|
|
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-27 14:07:00 +00:00
|
|
|
name = "miniupnpd-2.0.20180203";
|
2010-05-20 23:11:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
2018-02-27 14:07:00 +00:00
|
|
|
sha256 = "1djb0w76yd5jyqm5mzmxlxikxzzwqzjgy75h8saxc3rlz3r1a346";
|
2015-08-13 13:59:56 +01:00
|
|
|
name = "${name}.tar.gz";
|
2010-05-20 23:11:44 +01:00
|
|
|
};
|
|
|
|
|
2016-02-15 00:18:35 +00:00
|
|
|
buildInputs = [ iptables libuuid ];
|
2015-08-13 13:59:56 +01:00
|
|
|
nativeBuildInputs= [ pkgconfig ];
|
2010-05-20 23:11:44 +01:00
|
|
|
|
|
|
|
makefile = "Makefile.linux";
|
|
|
|
|
2016-04-20 21:01:31 +01:00
|
|
|
buildFlags = [ "miniupnpd" "genuuid" ];
|
2010-05-20 23:11:44 +01:00
|
|
|
|
2016-04-20 21:01:31 +01:00
|
|
|
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
|
2010-05-21 00:06:10 +01:00
|
|
|
|
2016-04-20 21:01:31 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-05-20 23:11:44 +01:00
|
|
|
homepage = http://miniupnp.free.fr/;
|
|
|
|
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
|
2016-04-20 21:01:31 +01:00
|
|
|
platforms = platforms.linux;
|
2010-05-20 23:11:44 +01:00
|
|
|
};
|
|
|
|
}
|