mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
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
|
||
|
];
|
||
|
}
|