summary refs log tree commit diff
path: root/pkgs/tools/networking/miniupnpd/default.nix
blob: ef3db0a4a21ff413e39f27f566aa69564a9a6694 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchurl, iptables, libnfnetlink }:

assert stdenv.isLinux;

stdenv.mkDerivation rec {
  name = "miniupnpd-1.8.20140401";

  src = fetchurl {
    url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
    sha256 = "1gfdbfqcw6ih830si51yzqbyymgcbwkiv9vk5dwnxs78b7xgyv88";
  };

  buildInputs = [ iptables libnfnetlink ];

  NIX_CFLAGS_COMPILE = "-DIPTABLES_143";

  NIX_CFLAGS_LINK = "-liptc -lnfnetlink";

  makefile = "Makefile.linux";

  makeFlags = "LIBS=";

  buildFlags = "miniupnpd genuuid";

  installFlags = "PREFIX=$(out) INSTALLPREFIX=$(out)";

  meta = {
    homepage = http://miniupnp.free.fr/;
    description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
  };
}