nixpkgs/pkgs/development/libraries/sparsehash/default.nix

21 lines
527 B
Nix
Raw Normal View History

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