ocamlPackages.git: 1.11.4 -> 1.11.5

Also enable tests
This commit is contained in:
Vincent Laporte 2018-05-03 18:37:47 +00:00
parent 301f14e993
commit d8ebe4f2cf
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 14 additions and 5 deletions

View File

@ -1,10 +1,12 @@
{ stdenv, ocaml, findlib, jbuilder, git, cohttp-lwt }: { stdenv, ocaml, findlib, jbuilder, git, cohttp-lwt
, alcotest, mtime, nocrypto
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "ocaml${ocaml.version}-git-http-${version}"; name = "ocaml${ocaml.version}-git-http-${version}";
inherit (git) version src; inherit (git) version src;
buildInputs = [ ocaml findlib jbuilder ]; buildInputs = [ ocaml findlib jbuilder alcotest mtime nocrypto ];
propagatedBuildInputs = [ git cohttp-lwt ]; propagatedBuildInputs = [ git cohttp-lwt ];
@ -12,6 +14,9 @@ stdenv.mkDerivation rec {
inherit (jbuilder) installPhase; inherit (jbuilder) installPhase;
doCheck = true;
checkPhase = "jbuilder runtest -p git-http";
meta = { meta = {
description = "Client implementation of the Smart HTTP Git protocol in pure OCaml"; description = "Client implementation of the Smart HTTP Git protocol in pure OCaml";
inherit (git.meta) homepage license maintainers platforms; inherit (git.meta) homepage license maintainers platforms;

View File

@ -1,19 +1,20 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, opam { stdenv, fetchFromGitHub, ocaml, findlib, jbuilder, opam
, astring, decompress, fmt, hex, logs, mstruct, ocaml_lwt, ocamlgraph, uri , astring, decompress, fmt, hex, logs, mstruct, ocaml_lwt, ocamlgraph, uri
, alcotest, mtime, nocrypto
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.11.4"; version = "1.11.5";
name = "ocaml${ocaml.version}-git-${version}"; name = "ocaml${ocaml.version}-git-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mirage"; owner = "mirage";
repo = "ocaml-git"; repo = "ocaml-git";
rev = version; rev = version;
sha256 = "182b6shcfcq50r5snm01hwalnmck43x1xgdd4fvjb6q78pbwag2x"; sha256 = "0r1bxpxjjnl9hh8xbabsxl7svzvd19hfy73a2y1m4kljmw64dpfh";
}; };
buildInputs = [ ocaml findlib jbuilder ]; buildInputs = [ ocaml findlib jbuilder alcotest mtime nocrypto ];
propagatedBuildInputs = [ astring decompress fmt hex logs mstruct ocaml_lwt ocamlgraph uri ]; propagatedBuildInputs = [ astring decompress fmt hex logs mstruct ocaml_lwt ocamlgraph uri ];
@ -21,6 +22,9 @@ stdenv.mkDerivation rec {
inherit (jbuilder) installPhase; inherit (jbuilder) installPhase;
doCheck = true;
checkPhase = "jbuilder runtest -p git";
meta = { meta = {
description = "Git format and protocol in pure OCaml"; description = "Git format and protocol in pure OCaml";
license = stdenv.lib.licenses.isc; license = stdenv.lib.licenses.isc;