depot/third_party/nixpkgs/pkgs/development/libraries/sparsehash/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

21 lines
559 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "sparsehash";
version = "2.0.4";
src = fetchFromGitHub {
owner = "sparsehash";
repo = "sparsehash";
rev = "sparsehash-${version}";
sha256 = "1pf1cjvcjdmb9cd6gcazz64x0cd2ndpwh6ql2hqpypjv725xwxy7";
};
meta = with lib; {
homepage = "https://github.com/sparsehash/sparsehash";
description = "Extremely memory-efficient hash_map implementation";
platforms = platforms.all;
license = licenses.bsd3;
maintainers = with maintainers; [ pSub ];
};
}