mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
724504e0da
ocamlPackages.conduit: 0.15.4 -> 1.0.0 ocamlPackages.cohttp-lwt: init at 0.99.0 ocamlPackages.cohttp-lwt-unix: init at 0.99.0 ocamlPackages.conduit-lwt: init at 1.0.0 ocamlPackages.conduit-lwt-unix: init at 1.0.0 ocamlPackages.git: 1.11.1 -> 1.11.2
20 lines
503 B
Nix
20 lines
503 B
Nix
{ stdenv, ocaml, findlib, jbuilder, git, cohttp-lwt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ocaml${ocaml.version}-git-http-${version}";
|
|
inherit (git) version src;
|
|
|
|
buildInputs = [ ocaml findlib jbuilder ];
|
|
|
|
propagatedBuildInputs = [ git cohttp-lwt ];
|
|
|
|
buildPhase = "jbuilder build -p git-http";
|
|
|
|
inherit (jbuilder) installPhase;
|
|
|
|
meta = {
|
|
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
|
|
inherit (git.meta) homepage license maintainers platforms;
|
|
};
|
|
}
|