a13cdfe520
To keep this for the future we also strictDeps where possible, including for janePackages, topkg, oasis and ocamlbuild. This makes some closures significantly smaller and makes cross compilation easier
20 lines
318 B
Nix
20 lines
318 B
Nix
{ lib, buildDunePackage, hacl-star-raw, zarith, cppo }:
|
|
|
|
buildDunePackage {
|
|
pname = "hacl-star";
|
|
|
|
inherit (hacl-star-raw) version src meta doCheck minimalOCamlVersion;
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [
|
|
hacl-star-raw
|
|
zarith
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cppo
|
|
];
|
|
|
|
strictDeps = true;
|
|
}
|