evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / sig.nix
blob41d95cf993227eac7d2137cc63c4f13bb2e67f82
1 { lib, fetchFromGitLab, buildDunePackage, zarith }:
3 buildDunePackage rec {
4   pname = "ff-sig";
5   version = "0.6.2";
6   src = fetchFromGitLab {
7     owner = "nomadic-labs";
8     repo = "cryptography/ocaml-ff";
9     rev = version;
10     hash = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
11   };
13   duneVersion = "3";
15   propagatedBuildInputs = [
16     zarith
17   ];
19   doCheck = true;
21   meta = {
22     inherit (src.meta) homepage;
23     description = "Minimal finite field signatures";
24     license = lib.licenses.mit;
25     maintainers = [ lib.maintainers.ulrikstrid ];
26   };