about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/carton/git.nix
blob: 4f7c880ae065f9003457001db1301f197f012662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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;
}