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