ocamlPackages.bls12-381: 3.0.0 -> 4.0.0

This commit is contained in:
Ulrik Strid 2022-10-11 09:20:38 +02:00 committed by Vincent Laporte
parent 14a822f72a
commit f8ec59a855

View File

@ -1,21 +1,17 @@
{ lib, buildDunePackage, fetchFromGitLab, ff-sig, zarith
, zarith_stubs_js, integers_stubs_js, integers, hex
, ff-pbt, bisect_ppx, alcotest
}:
{ lib, buildDunePackage, fetchFromGitLab
, ff-sig, zarith, zarith_stubs_js, integers_stubs_js, integers, hex
, alcotest, ff-pbt }:
buildDunePackage rec {
pname = "bls12-381";
version = "3.0.0";
version = "4.0.0";
src = fetchFromGitLab {
owner = "dannywillems";
repo = "ocaml-bls12-381";
rev = "4bbc7818e9ccd025c5e32006f8a9de370739bc43";
sha256 = "/Rw0mQvTfHyPqosWFPv+1FoY5Dwuwv9mB8UYjjHxodE=";
rev = version;
sha256 = "sha256-K9AsYUAUdk4XnspUalJKX5kycDFwO8PZx4bGaD3qZv8=";
};
useDune2 = true;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
@ -27,11 +23,7 @@ buildDunePackage rec {
hex
];
checkInputs = [
ff-pbt
bisect_ppx
alcotest
];
checkInputs = [ alcotest ff-pbt ];
doCheck = true;