7184de3945
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/a596018c138a1d359fa81cc983730be2
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchurl, libnfnetlink }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "minissdpd-${version}";
|
|
version = "1.5.20180223";
|
|
|
|
src = fetchurl {
|
|
sha256 = "1c47h1zil04jnbxiaaci2rm8jij47zp5156v48hb6m87nh4l5adv";
|
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
|
name = "${name}.tar.gz";
|
|
};
|
|
|
|
buildInputs = [ libnfnetlink ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Small daemon to speed up UPnP device discoveries";
|
|
longDescription = ''
|
|
MiniSSDPd receives NOTIFY packets and stores (caches) that information
|
|
for later use by UPnP Control Points on the machine. MiniSSDPd receives
|
|
M-SEARCH packets and answers on behalf of the UPnP devices running on
|
|
the machine. Software must be patched in order to take advantage of
|
|
MiniSSDPd, and MiniSSDPd must be started before any other UPnP program.
|
|
'';
|
|
homepage = http://miniupnp.free.fr/minissdpd.html;
|
|
downloadPage = http://miniupnp.free.fr/files/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|