Files
nixpkgs/pkgs/development/ocaml-modules/conan/lwt.nix
2026-03-06 15:18:17 +01:00

31 lines
320 B
Nix

{
buildDunePackage,
conan,
lwt,
bstr,
alcotest,
crowbar,
fmt,
rresult,
}:
buildDunePackage {
pname = "conan-lwt";
inherit (conan) version src meta;
propagatedBuildInputs = [
conan
lwt
bstr
];
doCheck = true;
checkInputs = [
alcotest
crowbar
fmt
rresult
];
}