depot/third_party/nixpkgs/pkgs/development/libraries/sparsehash/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

20 lines
529 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "sparsehash-2.0.3";
src = fetchFromGitHub {
owner = "sparsehash";
repo = "sparsehash";
rev = name;
sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na";
};
meta = with stdenv.lib; {
homepage = "https://github.com/sparsehash/sparsehash";
description = "An extremely memory-efficient hash_map implementation";
platforms = platforms.all;
license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
};
}