* ocamlPackages.index: 1.2.1 -> 1.3.0
* ocamlPackages.decompress: 0.9.0 -> 1.2.0
* ocamlPackages.imagelib-unix: remove at 20191011
* ocamlPackages.imagelib: 20191011 -> 20200929
* ocamlPackages.duff: 0.2 -> 0.3
* ocamlPackages.carton{,-git,-lwt}: init at 0.2.0
* ocamlPackages.encore: 0.5 → 0.7
* ocamlPackages.git-http: remove at 2.1.3
* ocamlPackages.git-unix: move into git directory
* ocamlPackages.irmin-mem: remove at 2.2.0
Replaced by irmin.mem contained in ocamlPackages.irmin >= 2.4.0
* ocamlPackages.git*: 2.1.3 -> 3.2.0
ocamlPackages.git-unix: 2.1.3 -> 3.2.0
ocamlPackages.git-cohttp{,-unix,-mirage}: init at 3.2.0
* ocamlPackages.irmin*: 2.2.0 -> 2.4.0
ocamlPackages.irmin-containers: init at 2.4.0
ocamlPackages.irmin-layers: init at 2.4.0
ocamlPackages.irmin-mirage: init at 2.4.0
ocamlPackages.irmin-mirage-git: init at 2.4.0
ocamlPackages.irmin-mirage-graphql: init at 2.4.0
* ocamlPackages.wodan-irmin: mark as broken
20 lines
453 B
Nix
20 lines
453 B
Nix
{ buildDunePackage, git
|
|
, cohttp, cohttp-lwt, fmt, lwt, result, rresult, uri
|
|
, alcotest, alcotest-lwt, bigstringaf, cstruct, logs
|
|
, mirage-flow, ke
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "git-cohttp";
|
|
|
|
inherit (git) version minimumOCamlVersion src useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
git cohttp cohttp-lwt fmt lwt result rresult uri
|
|
];
|
|
|
|
meta = git.meta // {
|
|
description = "A package to use HTTP-based ocaml-git with Unix backend";
|
|
};
|
|
}
|