mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
27 lines
439 B
Nix
27 lines
439 B
Nix
{ lib, buildDunePackage, hacl-star-raw, zarith, cppo, alcotest, secp256k1-internal, qcheck-core, cstruct }:
|
|
|
|
|
|
buildDunePackage {
|
|
pname = "hacl-star";
|
|
|
|
inherit (hacl-star-raw) version src meta doCheck minimalOCamlVersion;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
hacl-star-raw
|
|
zarith
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cppo
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
secp256k1-internal
|
|
qcheck-core
|
|
cstruct
|
|
];
|
|
}
|