forked from mirrors/nixpkgs
minissdpd: init at 1.4
This commit is contained in:
parent
6e28b032a5
commit
4eadb3f154
39
pkgs/tools/networking/minissdpd/default.nix
Normal file
39
pkgs/tools/networking/minissdpd/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{ stdenv, fetchurl, libnfnetlink }:
|
||||
|
||||
let
|
||||
version = "1.4";
|
||||
name = "minissdpd-${version}";
|
||||
in stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "0450680b9hpr3z4dn6gy01clxdc17w0lmxcjx6kfj8ahsklwg8j6";
|
||||
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; {
|
||||
inherit version;
|
||||
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;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
}
|
|
@ -2204,6 +2204,8 @@ let
|
|||
libpng = libpng12;
|
||||
};
|
||||
|
||||
minissdpd = callPackage ../tools/networking/minissdpd { };
|
||||
|
||||
miniupnpc = callPackage ../tools/networking/miniupnpc { };
|
||||
|
||||
miniupnpd = callPackage ../tools/networking/miniupnpd { };
|
||||
|
|
Loading…
Reference in a new issue