d4288c8e3f
Signed-off-by: Et7f3 <cadeaudeelie@gmail.com>
26 lines
425 B
Nix
26 lines
425 B
Nix
{ buildDunePackage, carton, carton-lwt
|
|
, bigstringaf, lwt, fpath, result
|
|
, fmt, decompress, astring
|
|
, alcotest, alcotest-lwt, cstruct, logs
|
|
, mirage-flow, rresult, ke
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "carton-git";
|
|
|
|
inherit (carton) version src postPatch;
|
|
|
|
propagatedBuildInputs = [
|
|
carton
|
|
carton-lwt
|
|
bigstringaf
|
|
lwt
|
|
fpath
|
|
result
|
|
fmt
|
|
decompress
|
|
astring
|
|
];
|
|
|
|
inherit (carton) meta;
|
|
}
|