about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ff/sig.nix
blob: 41d95cf993227eac7d2137cc63c4f13bb2e67f82 (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.2";
  src = fetchFromGitLab {
    owner = "nomadic-labs";
    repo = "cryptography/ocaml-ff";
    rev = version;
    hash = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
  };

  duneVersion = "3";

  propagatedBuildInputs = [
    zarith
  ];

  doCheck = true;

  meta = {
    inherit (src.meta) homepage;
    description = "Minimal finite field signatures";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}