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

21 lines
527 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2014-01-01 19:11:11 +00:00
2016-03-19 12:51:21 +00:00
stdenv.mkDerivation rec {
2020-08-29 08:48:41 +00:00
name = "sparsehash-2.0.4";
2014-01-01 19:11:11 +00:00
2016-03-19 12:51:21 +00:00
src = fetchFromGitHub {
owner = "sparsehash";
repo = "sparsehash";
rev = name;
2020-08-29 08:48:41 +00:00
sha256 = "1pf1cjvcjdmb9cd6gcazz64x0cd2ndpwh6ql2hqpypjv725xwxy7";
2014-01-01 19:11:11 +00:00
};
meta = with 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
};
}