summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/secp256k1-internal/default.nix
blob: f7d3c1e41c567fada2a29b1585212e8dafa19af6 (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
, fetchFromGitLab
, buildDunePackage
, gmp
, dune-configurator
, cstruct
, bigstring
, alcotest
, hex
}:

buildDunePackage rec {
  pname = "secp256k1-internal";
  version = "0.2";
  src = fetchFromGitLab {
    owner = "nomadic-labs";
    repo = "ocaml-secp256k1-internal";
    rev = "v${version}";
    sha256 = "1g9fyi78nmmm19l2cggwj14m4n80rz7gmnh1gq376zids71s6qxv";
  };

  useDune2 = true;

  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    gmp
    cstruct
    bigstring
  ];

  buildInputs = [
    dune-configurator
  ];

  checkInputs = [
    alcotest
    hex
  ];

  doCheck = true;

  meta = {
    description = "Bindings to secp256k1 internal functions (generic operations on the curve)";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}