base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / sp / sparsehash / package.nix
blob813024623a1a7b2cf07ade3fb9e7167d6101036c
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "sparsehash";
5   version = "2.0.4";
7   src = fetchFromGitHub {
8     owner = "sparsehash";
9     repo = "sparsehash";
10     rev = "sparsehash-${version}";
11     sha256 = "1pf1cjvcjdmb9cd6gcazz64x0cd2ndpwh6ql2hqpypjv725xwxy7";
12   };
14   meta = with lib; {
15     homepage = "https://github.com/sparsehash/sparsehash";
16     description = "Extremely memory-efficient hash_map implementation";
17     platforms = platforms.all;
18     license = licenses.bsd3;
19     maintainers = with maintainers; [ pSub ];
20   };