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

30 lines
795 B
Nix
Raw Normal View History

{ stdenv, fetchurl, iptables, libuuid, pkgconfig }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
2016-04-20 16:01:31 -04:00
name = "miniupnpd-2.0";
src = fetchurl {
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
2016-04-20 16:01:31 -04:00
sha256 = "1dxzhvkylrnbkd5srb9rb2g4f9ydd1zbjg5sdf190m0g1sha6snr";
name = "${name}.tar.gz";
};
buildInputs = [ iptables libuuid ];
nativeBuildInputs= [ pkgconfig ];
makefile = "Makefile.linux";
2016-04-20 16:01:31 -04:00
buildFlags = [ "miniupnpd" "genuuid" ];
2016-04-20 16:01:31 -04:00
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
2016-04-20 16:01:31 -04: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 16:01:31 -04:00
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}