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

34 lines
827 B
Nix
Raw Normal View History

2014-04-15 16:36:58 +04:00
{ stdenv, fetchurl, iptables, libnfnetlink }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2015-05-16 21:34:17 +03:00
name = "miniupnpd-1.9.20150430";
src = fetchurl {
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
2015-05-16 21:34:17 +03:00
sha256 = "0ajqs3lf2cgq5fm1v79fa23sbb623i89sqnx7d9cnqbqq5py1k71";
name = "miniupnpd-1.9.20150430.tar.gz";
};
2014-04-15 16:36:58 +04:00
buildInputs = [ iptables libnfnetlink ];
NIX_CFLAGS_COMPILE = "-DIPTABLES_143";
2012-10-13 20:34:31 +04:00
NIX_CFLAGS_LINK = "-liptc -lnfnetlink";
makefile = "Makefile.linux";
makeFlags = "LIBS=";
2014-04-15 16:36:58 +04:00
buildFlags = "miniupnpd genuuid";
2014-04-15 16:36:58 +04:00
installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";
meta = {
homepage = http://miniupnp.free.fr/;
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
2015-05-16 21:34:17 +03:00
platforms = stdenv.lib.platforms.linux;
};
}