c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
25 lines
550 B
Nix
25 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 ];
|
|
};
|
|
}
|