mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
47 lines
756 B
Nix
47 lines
756 B
Nix
|
{ buildDunePackage, carton
|
||
|
, lwt, decompress, optint, bigstringaf
|
||
|
, alcotest, alcotest-lwt, cstruct, fmt, logs
|
||
|
, mirage-flow, result, rresult, bigarray-compat
|
||
|
, ke, base64, bos, checkseum, digestif, fpath, mmap
|
||
|
, stdlib-shims
|
||
|
, git-binary # pkgs.git
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "carton-lwt";
|
||
|
|
||
|
inherit (carton) version src useDune2 minimumOCamlVersion postPatch;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
carton
|
||
|
lwt
|
||
|
decompress
|
||
|
optint
|
||
|
bigstringaf
|
||
|
];
|
||
|
|
||
|
doCheck = true;
|
||
|
checkInputs = [
|
||
|
git-binary
|
||
|
alcotest
|
||
|
alcotest-lwt
|
||
|
cstruct
|
||
|
fmt
|
||
|
logs
|
||
|
mirage-flow
|
||
|
result
|
||
|
rresult
|
||
|
bigarray-compat
|
||
|
ke
|
||
|
base64
|
||
|
bos
|
||
|
checkseum
|
||
|
digestif
|
||
|
fpath
|
||
|
mmap
|
||
|
stdlib-shims
|
||
|
];
|
||
|
|
||
|
inherit (carton) meta;
|
||
|
}
|