about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/class_group_vdf/default.nix
blob: 181228e28a0a9561c486e4a8f85b2de38a8d4ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ lib, fetchFromGitLab, buildDunePackage
, gmp, pkg-config, dune-configurator
, zarith, integers
, alcotest, bisect_ppx }:

buildDunePackage rec {
  pname = "class_group_vdf";
  version = "0.0.4";
  duneVersion = "3";

  src = fetchFromGitLab {
    owner = "nomadic-labs/cryptography";
    repo = "ocaml-chia-vdf";
    rev = "v${version}";
    sha256 = "sha256-KvpnX2DTUyfKARNWHC2lLBGH2Ou2GfRKjw05lu4jbBs=";
  };

  minimalOCamlVersion = "4.08";

  nativeBuildInputs = [
    gmp
    pkg-config
    dune-configurator
  ];

  propagatedBuildInputs = [
    zarith
    integers
  ];

  checkInputs = [
    alcotest
    bisect_ppx
  ];

  doCheck = true;

  meta = {
    description = "Verifiable Delay Functions bindings to Chia's VDF";
    homepage = "https://gitlab.com/nomadic-labs/tezos";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}