nixpkgs/pkgs/development/ocaml-modules/git-http/default.nix
Michiel Leenaars b2d90f1d64
ocamlPackages.cohttp: 0.99 => 1.0.0
ocamlPackages.git-http: mark as broken
2017-12-16 12:21:00 +00:00

21 lines
520 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;
broken = true;
};
}