ocamlPackages.class_group_vdf: init at 0.0.4 (#196366)

This commit is contained in:
Ulrik Strid 2022-10-18 11:50:56 +02:00 committed by GitHub
parent f8ec59a855
commit 6f4f07d3b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib, fetchFromGitLab, buildDunePackage
, gmp, pkg-config, dune-configurator
, zarith, integers
, alcotest, bisect_ppx }:
buildDunePackage rec {
pname = "class_group_vdf";
version = "0.0.4";
duneVersion = "3";
src = fetchFromGitLab {
owner = "nomadic-labs/cryptography";
repo = "ocaml-chia-vdf";
rev = "v${version}";
sha256 = "sha256-KvpnX2DTUyfKARNWHC2lLBGH2Ou2GfRKjw05lu4jbBs=";
};
minimalOCamlVersion = "4.08";
nativeBuildInputs = [
gmp
pkg-config
dune-configurator
];
propagatedBuildInputs = [
zarith
integers
];
checkInputs = [
alcotest
bisect_ppx
];
doCheck = true;
meta = {
description = "Verifiable Delay Functions bindings to Chia's VDF";
homepage = "https://gitlab.com/nomadic-labs/tezos";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}

View File

@ -144,6 +144,8 @@ let
camlimages = callPackage ../development/ocaml-modules/camlimages { };
class_group_vdf = callPackage ../development/ocaml-modules/class_group_vdf { };
benchmark = callPackage ../development/ocaml-modules/benchmark { };
biniou = callPackage ../development/ocaml-modules/biniou { };