about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/bls12-381/gen.nix
blob: d7daba263c65e66e1e9b6f902b890d1b12b34471 (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
{ lib, fetchFromGitLab, buildDunePackage, ff-sig, zarith }:

buildDunePackage rec {
  pname = "bls12-381-gen";
  version = "0.4.2";

  src = fetchFromGitLab {
      owner = "dannywillems";
      repo = "ocaml-bls12-381";
      rev = version;
      sha256 = "0jxc8qrdn74brmzjns1xycv3cb257kx5pa3ripgl9ci4njkv87n2";
  };
  useDune2 = true;

  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    ff-sig
    zarith
  ];

  doCheck = true;

  meta = {
    homepage = "https://gitlab.com/dannywillems/ocaml-bls12-381";
    description = "Functors to generate BLS12-381 primitives based on stubs";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}