Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 527 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "sparsehash-2.0.3"; 5 6 src = fetchFromGitHub { 7 owner = "sparsehash"; 8 repo = "sparsehash"; 9 rev = name; 10 sha256 = "0m3f0cnpnpf6aak52wn8xbrrdw8p0yhq8csgc8nlvf9zp8c402na"; 11 }; 12 13 meta = with stdenv.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}