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

buildDunePackage rec {
  pname = "ff-sig";
  version = "0.6.1";
  src = fetchFromGitLab {
    owner = "dannywillems";
    repo = "ocaml-ff";
    rev = version;
    sha256 = "0p42ivyfbn1pwm18773y4ga9cm64ysha0rplzvrnhszg01anarc0";
  };

  useDune2 = true;

  propagatedBuildInputs = [
    zarith
  ];

  doCheck = true;

  meta = {
    homepage = "https://gitlab.com/dannywillems/ocaml-ff";
    description = "Minimal finite field signatures";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}