libnatpmp: init at 20150609
This commit is contained in:
parent
430bfa5ae5
commit
5188ef371f
22
pkgs/development/libraries/libnatpmp/default.nix
Normal file
22
pkgs/development/libraries/libnatpmp/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libnatpmp-${version}";
|
||||||
|
version = "20150609";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
name = "${name}.tar.gz";
|
||||||
|
url = "http://miniupnp.free.fr/files/download.php?file=${name}.tar.gz";
|
||||||
|
sha256 = "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = [ "INSTALLPREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://miniupnp.free.fr/libnatpmp.html;
|
||||||
|
description = "NAT-PMP client";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ orivej ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -10119,6 +10119,8 @@ with pkgs;
|
|||||||
mysql = mysql57;
|
mysql = mysql57;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
libnatpmp = callPackage ../development/libraries/libnatpmp { };
|
||||||
|
|
||||||
libnatspec = callPackage ../development/libraries/libnatspec { };
|
libnatspec = callPackage ../development/libraries/libnatspec { };
|
||||||
|
|
||||||
libndp = callPackage ../development/libraries/libndp { };
|
libndp = callPackage ../development/libraries/libndp { };
|
||||||
|
Loading…
Reference in New Issue
Block a user