depot/third_party/nixpkgs/pkgs/development/ocaml-modules/carton/lwt.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

45 lines
702 B
Nix

{ buildDunePackage, carton
, lwt, decompress, optint, bigstringaf
, alcotest, alcotest-lwt, cstruct, fmt, logs
, mirage-flow, result, rresult
, ke, base64, bos, checkseum, digestif, fpath
, stdlib-shims
, git-binary # pkgs.git
}:
buildDunePackage {
pname = "carton-lwt";
inherit (carton) version src postPatch;
duneVersion = "3";
propagatedBuildInputs = [
carton
lwt
decompress
optint
bigstringaf
];
doCheck = true;
nativeCheckInputs = [
git-binary
alcotest
alcotest-lwt
cstruct
fmt
logs
mirage-flow
result
rresult
ke
base64
bos
checkseum
digestif
fpath
stdlib-shims
];
inherit (carton) meta;
}