forked from mirrors/nixpkgs
add sparsehash-2.0.2
This commit is contained in:
parent
776dea8d24
commit
ef108a8d31
17
pkgs/development/libraries/sparsehash/default.nix
Normal file
17
pkgs/development/libraries/sparsehash/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue