summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Laporte <vbgl@users.noreply.github.com>2018-01-06 18:18:42 +0100
committerzimbatm <zimbatm@zimbatm.com>2018-01-06 17:18:42 +0000
commit5391489cfc890dfc6e67a6c25f1040523312c995 (patch)
tree872e6128fd26a80e9f4a825a14689ef2bb96fe9b
parentd7d3f359ae65dbd12459c69e2a40196d005ea9c3 (diff)
downloadnixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar.gz
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar.bz2
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar.lz
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar.xz
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.tar.zst
nixlib-5391489cfc890dfc6e67a6c25f1040523312c995.zip
ocamlPackages.git: 1.11.2 -> 1.11.4 (#33472)
-rw-r--r--pkgs/development/ocaml-modules/git-http/default.nix1
-rw-r--r--pkgs/development/ocaml-modules/git/default.nix4
2 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/git-http/default.nix b/pkgs/development/ocaml-modules/git-http/default.nix
index fc5591483d2b..5b93b9607658 100644
--- a/pkgs/development/ocaml-modules/git-http/default.nix
+++ b/pkgs/development/ocaml-modules/git-http/default.nix
@@ -15,6 +15,5 @@ stdenv.mkDerivation rec {
 	meta = {
 		description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
 		inherit (git.meta) homepage license maintainers platforms;
-		broken = true;
 	};
 }
diff --git a/pkgs/development/ocaml-modules/git/default.nix b/pkgs/development/ocaml-modules/git/default.nix
index 4d4f86e57eb4..9347c6ad00cd 100644
--- a/pkgs/development/ocaml-modules/git/default.nix
+++ b/pkgs/development/ocaml-modules/git/default.nix
@@ -3,14 +3,14 @@
 }:
 
 stdenv.mkDerivation rec {
-	version = "1.11.2";
+	version = "1.11.4";
 	name = "ocaml${ocaml.version}-git-${version}";
 
 	src = fetchFromGitHub {
 		owner = "mirage";
 		repo = "ocaml-git";
 		rev = version;
-		sha256 = "1z5b0g4vck1sh1w076i2p3ppxrmb9h30q3nip5snw2r9prkm6y1j";
+		sha256 = "182b6shcfcq50r5snm01hwalnmck43x1xgdd4fvjb6q78pbwag2x";
 	};
 
 	buildInputs = [ ocaml findlib jbuilder ];