about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/bls12-381/unix.nix
blob: 4da1a489e2c8506ca7f8bb6206e4fa457e55a6b9 (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
45
46
47
48
{ lib
, buildDunePackage
, rustc
, cargo
, dune-configurator
, bls12-381
, bls12-381-gen
, ff-pbt
, ff-sig
, zarith
, ctypes
, tezos-rust-libs
, alcotest
}:

buildDunePackage {
  pname = "bls12-381-unix";

  inherit (bls12-381-gen) version src useDune2 doCheck;

  checkInputs = [
    alcotest
    ff-pbt
  ];

  buildInputs = [
    rustc
    cargo
    dune-configurator
  ];

  propagatedBuildInputs = [
    ff-sig
    zarith
    ctypes
    bls12-381-gen
    bls12-381
    tezos-rust-libs
  ];

  # This is a hack to work around the hack used in the dune files
  OPAM_SWITCH_PREFIX = "${tezos-rust-libs}";

  meta = {
    description = "UNIX version of BLS12-381 primitives implementing the virtual package bls12-381";
    license = lib.licenses.mit;
  };
}