1 { lib, stdenv, fetchurl, libnfnetlink }:
3 stdenv.mkDerivation rec {
8 sha256 = "sha256-9MLepqRy4KXMncotxMH8NrpVOOrPjXk4JSkyUXJVRr0=";
9 url = "http://miniupnp.free.fr/files/download.php?file=${pname}-${version}.tar.gz";
10 name = "${pname}-${version}.tar.gz";
14 ./makefile-install-dir.patch
17 buildInputs = [ libnfnetlink ];
19 installFlags = [ "PREFIX=$(out)" "INSTALLPREFIX=$(out)" ];
21 enableParallelBuilding = true;
26 description = "Small daemon to speed up UPnP device discoveries";
28 MiniSSDPd receives NOTIFY packets and stores (caches) that information
29 for later use by UPnP Control Points on the machine. MiniSSDPd receives
30 M-SEARCH packets and answers on behalf of the UPnP devices running on
31 the machine. Software must be patched in order to take advantage of
32 MiniSSDPd, and MiniSSDPd must be started before any other UPnP program.
34 homepage = "http://miniupnp.free.fr/minissdpd.html";
35 downloadPage = "http://miniupnp.free.fr/files/";
36 license = licenses.bsd3;
37 platforms = platforms.linux;
38 mainProgram = "minissdpd";