summary refs log tree commit diff
path: root/pkgs/development/libraries/sparsehash/default.nix
blob: 1f9bbcbd18dabcaeed76daa47a22b9f1b0b968f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  };
}