3
0
Fork 0
forked from mirrors/nixpkgs

add sparsehash-2.0.2

This commit is contained in:
Thomas Tuegel 2014-01-01 13:11:11 -06:00
parent 776dea8d24
commit ef108a8d31
2 changed files with 19 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -1830,6 +1830,8 @@ let
inherit (pkgsi686Linux.xlibs) libX11;
};
sparsehash = callPackage ../development/libraries/sparsehash { };
stardict = callPackage ../applications/misc/stardict/stardict.nix {
inherit (gnome) libgnomeui scrollkeeper;
};