![Ulrik Strid](/assets/img/avatar_default.png)
* ocamlPackages.cstruct: 6.0.1 -> 6.1.1 * ocamlPackages.git: 3.5.0 -> 3.9.1 * ocamlPackages.carton: 0.4.3 -> 0.4.4 * ocamlPackages.bigstringaf: 0.7.0 -> 0.9.0 * ocamlPackages.decompress: 1.4.2 -> 1.5.1 * ocamlPackages.repr: 0.5.0 -> 0.6.0 * ocamlPackages.irmin: 2.9.1 -> 3.4.1 * ligo: 0.36.0 -> 0.47.0 ocamlPackages.ringo: 0.5 → 0.9 ocamlPackages.data-encoding: 0.4.0 → 0.5.3 ocamlPackages.bls12-381: 1.1.0 -> 3.0.0 Co-authored-by: bezmuth <benkel97@protonmail.com>
45 lines
904 B
Nix
45 lines
904 B
Nix
{ lib, buildDunePackage, fetchFromGitLab, ff-sig, zarith
|
|
, zarith_stubs_js, integers_stubs_js, integers, hex
|
|
, ff-pbt, bisect_ppx, alcotest
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "bls12-381";
|
|
version = "3.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "dannywillems";
|
|
repo = "ocaml-bls12-381";
|
|
rev = "4bbc7818e9ccd025c5e32006f8a9de370739bc43";
|
|
sha256 = "/Rw0mQvTfHyPqosWFPv+1FoY5Dwuwv9mB8UYjjHxodE=";
|
|
};
|
|
|
|
useDune2 = true;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [
|
|
ff-sig
|
|
zarith
|
|
zarith_stubs_js
|
|
integers_stubs_js
|
|
integers
|
|
hex
|
|
];
|
|
|
|
checkInputs = [
|
|
ff-pbt
|
|
bisect_ppx
|
|
alcotest
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://gitlab.com/dannywillems/ocaml-bls12-381";
|
|
description = "OCaml binding for bls12-381 from librustzcash";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|