evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / class_group_vdf / default.nix
blob61acb189242d6a1b2d6af9e191a4538af01a5a35
1 { stdenv, lib, fetchFromGitLab, buildDunePackage
2 , gmp, pkg-config, dune-configurator
3 , zarith, integers
4 , alcotest, bisect_ppx
5 }:
7 buildDunePackage (rec {
8   pname = "class_group_vdf";
9   version = "0.0.4";
10   duneVersion = "3";
12   src = fetchFromGitLab {
13     owner = "nomadic-labs/cryptography";
14     repo = "ocaml-chia-vdf";
15     rev = "v${version}";
16     hash = "sha256-KvpnX2DTUyfKARNWHC2lLBGH2Ou2GfRKjw05lu4jbBs=";
17   };
19   minimalOCamlVersion = "4.08";
21   nativeBuildInputs = [
22     gmp
23     pkg-config
24     dune-configurator
25   ];
27   buildInputs = [
28     dune-configurator
29   ];
31   propagatedBuildInputs = [
32     zarith
33     integers
34   ];
36   checkInputs = [
37     alcotest
38     bisect_ppx
39   ];
41   doCheck = true;
43   meta = {
44     description = "Verifiable Delay Functions bindings to Chia's VDF";
45     homepage = "https://gitlab.com/nomadic-labs/tezos";
46     license = lib.licenses.mit;
47     maintainers = [ lib.maintainers.ulrikstrid ];
48   };
50 # Darwin sdk on intel target 10.12 (2016) at the time of writing. It is likely that host will be at least 10.14 (2018). This fix allow it to build and run on 10.14 and build on 10.12 (but don't run).
51 // lib.optionalAttrs (lib.versionOlder stdenv.hostPlatform.darwinMinVersion "10.14" && stdenv.hostPlatform.isMacOS && stdenv.hostPlatform.isx86_64) {
52   preHook = ''
53     export MACOSX_DEPLOYMENT_TARGET=10.14
54   '';