about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libnatpmp
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libnatpmp')
-rw-r--r--nixpkgs/pkgs/development/libraries/libnatpmp/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libnatpmp/default.nix b/nixpkgs/pkgs/development/libraries/libnatpmp/default.nix
new file mode 100644
index 000000000000..54177ad559d6
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libnatpmp/default.nix
@@ -0,0 +1,31 @@
+{ lib, stdenv, fetchurl, fixDarwinDylibNames }:
+
+stdenv.mkDerivation rec {
+  pname = "libnatpmp";
+  version = "20150609";
+
+  src = fetchurl {
+    name = "${pname}-${version}.tar.gz";
+    url = "http://miniupnp.free.fr/files/download.php?file=${pname}-${version}.tar.gz";
+    sha256 = "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1";
+  };
+
+  makeFlags = [
+    "INSTALLPREFIX=$(out)"
+    "CC:=$(CC)"
+  ];
+
+  nativeBuildInputs = lib.optional stdenv.isDarwin fixDarwinDylibNames;
+
+  postFixup = ''
+    chmod +x $out/lib/*
+  '';
+
+  meta = with lib; {
+    homepage = "http://miniupnp.free.fr/libnatpmp.html";
+    description = "NAT-PMP client";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ orivej ];
+    platforms = platforms.all;
+  };
+}