python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / sparsehash / default.nix
blob35208d021b83abec036efe7f0c00cb5722c5b801
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 = "An extremely memory-efficient hash_map implementation";
17     platforms = platforms.all;
18     license = licenses.bsd3;
19     maintainers = with maintainers; [ pSub ];
20   };