Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub }:
2
3stdenv.mkDerivation rec {
4 name = "sparsehash-2.0.4";
5
6 src = fetchFromGitHub {
7 owner = "sparsehash";
8 repo = "sparsehash";
9 rev = name;
10 sha256 = "1pf1cjvcjdmb9cd6gcazz64x0cd2ndpwh6ql2hqpypjv725xwxy7";
11 };
12
13 meta = with lib; {
14 homepage = "https://github.com/sparsehash/sparsehash";
15 description = "An extremely memory-efficient hash_map implementation";
16 platforms = platforms.all;
17 license = licenses.bsd3;
18 maintainers = with maintainers; [ pSub ];
19 };
20}