python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libsnark / default.nix
blob0eb0045fbe68e008e3ab13abf5c84151ec6871b1
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, openssl, boost, gmp, procps }:
3 stdenv.mkDerivation rec {
4   pname = "libsnark";
5   version = "unstable-2018-01-15";
7   nativeBuildInputs = [ cmake pkg-config ];
8   buildInputs = [ openssl boost gmp ] ++ lib.optional stdenv.hostPlatform.isLinux procps;
10   cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "-DWITH_PROCPS=OFF" "-DWITH_SUPERCOP=OFF" ];
12   src = fetchFromGitHub {
13     rev = "9e6b19ff15bc19fba5da1707ba18e7f160e5ed07";
14     owner           = "scipr-lab";
15     repo            = "libsnark";
16     sha256          = "13f02qp2fmfhvxlp4xi69m0l8r5nq913l2f0zwdk7hl46lprfdca";
17     fetchSubmodules = true;
18   };
20   meta = with lib; {
21     broken = (stdenv.isLinux && stdenv.isAarch64);
22     description = "C++ library for zkSNARKs";
23     homepage = "https://github.com/scipr-lab/libsnark";
24     license = licenses.mit;
25     platforms = lib.platforms.linux ++ lib.platforms.darwin;
26   };