nixpkgs/pkgs/tools/networking/miniupnpd/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, iptables, libuuid, pkgconfig
, which, iproute, gnused, coreutils, gawk, makeWrapper
}:
let
scriptBinEnv = lib.makeBinPath [ which iproute iptables gnused coreutils gawk ];
in
stdenv.mkDerivation rec {
2019-05-12 14:52:59 +03:00
name = "miniupnpd-2.1.20190502";
src = fetchurl {
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
2019-05-12 14:52:59 +03:00
sha256 = "1m8d0g9b0bjwsnqccw1yapp6n0jghmgzwixwjflwmvi2fi6hdp4b";
name = "${name}.tar.gz";
};
buildInputs = [ iptables libuuid ];
nativeBuildInputs= [ pkgconfig makeWrapper ];
makefile = "Makefile.linux";
2016-04-20 23:01:31 +03:00
buildFlags = [ "miniupnpd" "genuuid" ];
2016-04-20 23:01:31 +03:00
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
postFixup = ''
for script in $out/etc/miniupnpd/ip{,6}tables_{init,removeall}.sh
do
wrapProgram $script --set PATH '${scriptBinEnv}:$PATH'
done
'';
2016-04-20 23:01:31 +03:00
meta = with stdenv.lib; {
homepage = "http://miniupnp.free.fr/";
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
2016-04-20 23:01:31 +03:00
platforms = platforms.linux;
2018-09-10 22:32:49 +03:00
license = licenses.bsd3;
};
}