python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / hiredis / default.nix
blob2c19c4ae7d011bf25a33ae059004eeb8ebbb533b
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "hiredis";
5   version = "1.0.2";
7   src = fetchFromGitHub {
8     owner = "redis";
9     repo = "hiredis";
10     rev = "v${version}";
11     sha256 = "0a55zk3qrw9yl27i87h3brg2hskmmzbfda77dhq9a4if7y70xnfb";
12   };
14   PREFIX = "\${out}";
16   meta = with lib; {
17     homepage = "https://github.com/redis/hiredis";
18     description = "Minimalistic C client for Redis >= 1.2";
19     license = licenses.bsd3;
20     platforms = platforms.all;
21   };