mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29 lines
486 B
Nix
29 lines
486 B
Nix
{ buildDunePackage, carton, carton-lwt
|
|
, bigarray-compat, bigstringaf, lwt, fpath, result
|
|
, mmap, fmt, decompress, astring
|
|
, alcotest, alcotest-lwt, cstruct, logs
|
|
, mirage-flow, rresult, ke
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "carton-git";
|
|
|
|
inherit (carton) version src useDune2 postPatch;
|
|
|
|
propagatedBuildInputs = [
|
|
carton
|
|
carton-lwt
|
|
bigarray-compat
|
|
bigstringaf
|
|
lwt
|
|
fpath
|
|
result
|
|
mmap
|
|
fmt
|
|
decompress
|
|
astring
|
|
];
|
|
|
|
inherit (carton) meta;
|
|
}
|