mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
55d50f19bf
ocamlPackages.hacl-star-raw: init at 0.3.2
19 lines
290 B
Nix
19 lines
290 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
|
|
];
|
|
|
|
buildInputs = [
|
|
cppo
|
|
];
|
|
}
|