mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2c616aa638
ocamlPackages.email_message: fix 0.12.0 version for angstrom 0.14 ocamlPackages.encore: 0.3 → 0.5 ocamlPackages.git{,-http,-unix}: 2.1.2 → 2.1.3
16 lines
368 B
Nix
16 lines
368 B
Nix
{ buildDunePackage, git, cohttp, cohttp-lwt }:
|
|
|
|
buildDunePackage {
|
|
pname = "git-http";
|
|
inherit (git) version src minimumOCamlVersion;
|
|
|
|
useDune2 = true;
|
|
|
|
propagatedBuildInputs = [ git cohttp cohttp-lwt ];
|
|
|
|
meta = {
|
|
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
|
|
inherit (git.meta) homepage license maintainers;
|
|
};
|
|
}
|