mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
26 lines
379 B
Nix
26 lines
379 B
Nix
{ buildDunePackage, carton, carton-lwt
|
|
, bigstringaf, lwt, fpath, result
|
|
, fmt, decompress, astring
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "carton-git";
|
|
|
|
inherit (carton) version src postPatch;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
carton
|
|
carton-lwt
|
|
bigstringaf
|
|
lwt
|
|
fpath
|
|
result
|
|
fmt
|
|
decompress
|
|
astring
|
|
];
|
|
|
|
inherit (carton) meta;
|
|
}
|