summary refs log tree commit diff
path: root/pkgs/development/libraries/sparsehash
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2014-01-01 13:11:11 -0600
committerThomas Tuegel <ttuegel@gmail.com>2014-01-02 14:49:23 -0600
commitef108a8d319cfcc0c1b0478c142e677a6159f437 (patch)
tree8aa29f628350d726d69f22e5b83c4417f5068b71 /pkgs/development/libraries/sparsehash
parent776dea8d244ae7264bf2775ed4cb2fc1b44b9855 (diff)
downloadnixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar.gz
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar.bz2
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar.lz
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar.xz
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.tar.zst
nixlib-ef108a8d319cfcc0c1b0478c142e677a6159f437.zip
add sparsehash-2.0.2
Diffstat (limited to 'pkgs/development/libraries/sparsehash')
-rw-r--r--pkgs/development/libraries/sparsehash/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/libraries/sparsehash/default.nix b/pkgs/development/libraries/sparsehash/default.nix
new file mode 100644
index 000000000000..1f9bbcbd18da
--- /dev/null
+++ b/pkgs/development/libraries/sparsehash/default.nix
@@ -0,0 +1,17 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+  name = "sparsehash-2.0.2";
+
+  src = fetchurl {
+    url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz;
+    sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif";
+  };
+
+  meta = with stdenv.lib; {
+    homepage = "http://code.google.com/p/sparsehash/";
+    description = "An extremely memory-efficient hash_map implementation";
+    platforms = platforms.all;
+    license = licenses.bsd3;
+  };
+}