repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
development
/
ocaml-modules
/
ff
/
default.nix
blob
5681b33cb7683db8257adef1757d2bc573cbaf8f
1
{ lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
2
3
buildDunePackage rec {
4
pname = "ff";
5
inherit (ff-sig) version src;
6
7
propagatedBuildInputs = [
8
ff-sig
9
zarith
10
];
11
12
checkInputs = [
13
alcotest
14
ff-pbt
15
];
16
17
doCheck = true;
18
19
meta = ff-sig.meta // {
20
description = "OCaml implementation of Finite Field operations";
21
};
22
}