1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 name = "sparsehash-2.0.2";
5
6 src = fetchurl {
7 url = http://sparsehash.googlecode.com/files/sparsehash-2.0.2.tar.gz;
8 sha256 = "0z5qa1sbp6xx5qpdvrdjh185k5kj53sgb6h2qabw01sn2nkkkmif";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = "http://code.google.com/p/sparsehash/";
13 description = "An extremely memory-efficient hash_map implementation";
14 platforms = platforms.all;
15 license = licenses.bsd3;
16 };
17}