mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
aee00346d8
ocamlPackages.ff: init at 0.4.0 tezos-rust-libs: init at 1.0 ocamlPackages.bls12-381: init at 0.3.15
33 lines
644 B
Nix
33 lines
644 B
Nix
{ lib, fetchFromGitLab, buildDunePackage, zarith, alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ff";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "dannywillems";
|
|
repo = "ocaml-ff";
|
|
rev = version;
|
|
sha256 = "1ik29srzkd0pl48p1si9p1c4f8vmx5rgm02yv2arj3vg0a1nfhdv";
|
|
};
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
zarith
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://gitlab.com/dannywillems/ocaml-ff";
|
|
description = "OCaml implementation of Finite Field operations";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
}
|