9a6ba03cac
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - directory tree listing: https://gist.github.com/207d415090e19d752f7ec321bb409364
28 lines
758 B
Nix
28 lines
758 B
Nix
{ stdenv, fetchurl, iptables, libuuid, pkgconfig }:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "miniupnpd-2.0.20180222";
|
|
|
|
src = fetchurl {
|
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
|
sha256 = "1hdpyvz1z6crpa7as3srmbl64fx0k4wjra57jw7qaysdsb1b2kqr";
|
|
name = "${name}.tar.gz";
|
|
};
|
|
|
|
buildInputs = [ iptables libuuid ];
|
|
nativeBuildInputs= [ pkgconfig ];
|
|
|
|
makefile = "Makefile.linux";
|
|
|
|
buildFlags = [ "miniupnpd" "genuuid" ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://miniupnp.free.fr/;
|
|
description = "A daemon that implements the UPnP Internet Gateway Device (IGD) specification";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|