python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / sig.nix
blob503a26f639866a3332c659f0886b134e18031903
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     sha256 = "sha256-IoUH4awMOa1pm/t8E5io87R0TZsAxJjGWaXhXjn/w+Y=";
11   };
13   propagatedBuildInputs = [
14     zarith
15   ];
17   doCheck = true;
19   meta = {
20     inherit (src.meta) homepage;
21     description = "Minimal finite field signatures";
22     license = lib.licenses.mit;
23     maintainers = [ lib.maintainers.ulrikstrid ];
24   };