summary refs log tree commit diff
path: root/pkgs/development/libraries/uthash
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/uthash')
-rw-r--r--pkgs/development/libraries/uthash/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/libraries/uthash/default.nix b/pkgs/development/libraries/uthash/default.nix
new file mode 100644
index 00000000000..5f3b71131e0
--- /dev/null
+++ b/pkgs/development/libraries/uthash/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, perl }:
+
+let
+  version = "1.9.9";
+in
+stdenv.mkDerivation rec {
+  name = "uthash-${version}";
+
+  src = fetchurl {
+    url = "https://github.com/troydhanson/uthash/archive/v${version}.tar.gz";
+    sha256 = "035z3cs5ignywgh4wqxx358a2nhn3lj0x1ifij6vj0yyyhah3wgj";
+  };
+
+  buildPhase = ":";
+
+  buildInputs = stdenv.lib.optional doCheck perl;
+
+  doCheck = true;
+  checkTarget = "-C tests/";
+
+  installPhase = ''
+    mkdir -p "$out/include"
+    cp ./src/* "$out/include/"
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A hash table for C structures";
+    homepage    = http://troydhanson.github.io/uthash;
+    license     = licenses.bsd2; # it's one-clause, actually, as it's source-only
+    platforms   = platforms.all;
+  };
+}
+