6064764516
GitOrigin-RevId: 2cf9db0e3d45b9d00f16f2836cb1297bcadc475e
27 lines
584 B
Nix
27 lines
584 B
Nix
{ 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 ];
|
|
};
|
|
}
|