zfs_unstable: 2.3.0-rc3 -> 2.3.0-rc4 (#365045)
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / sig.nix
blob9aab1f066078a83744e6b54749661344f368dbe9
2   lib,
3   fetchFromGitLab,
4   buildDunePackage,
5   zarith,
6 }:
8 buildDunePackage rec {
9   pname = "ff-sig";
10   version = "0.6.2";
11   src = fetchFromGitLab {
12     owner = "nomadic-labs";
13     repo = "cryptography/ocaml-ff";
14     rev = version;
15     hash = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
16   };
18   duneVersion = "3";
20   propagatedBuildInputs = [
21     zarith
22   ];
24   doCheck = true;
26   meta = {
27     inherit (src.meta) homepage;
28     description = "Minimal finite field signatures";
29     license = lib.licenses.mit;
30     maintainers = [ lib.maintainers.ulrikstrid ];
31   };