nixpkgs/pkgs/development/ocaml-modules/ff/sig.nix
Vincent Laporte bb38470b96 ocamlPackages.ff: 0.4.0 → 0.6.2
ocamlPackages.ff-pbt: 0.6.1 → 0.6.2
ocamlPackages.ff-sig: 0.6.1 → 0.6.2
2022-10-12 19:58:38 +02:00

26 lines
550 B
Nix

{ lib, fetchFromGitLab, buildDunePackage, zarith }:
buildDunePackage rec {
pname = "ff-sig";
version = "0.6.2";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = "cryptography/ocaml-ff";
rev = version;
sha256 = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
};
propagatedBuildInputs = [
zarith
];
doCheck = true;
meta = {
inherit (src.meta) homepage;
description = "Minimal finite field signatures";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}