summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin
diff options
context:
space:
mode:
authorDaniel Hines <d4hines@gmail.com>2021-07-15 03:52:14 -0400
committerGitHub <noreply@github.com>2021-07-15 09:52:14 +0200
commit204f7dc3350f0b5c97b236c3fff0f65002c857f6 (patch)
tree97c25c575b28c1041c65d3e0778ba707051e4edf /pkgs/development/ocaml-modules/irmin
parent0f4cee585abe6290aae9fc744108e39814a1eb75 (diff)
downloadnixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar.gz
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar.bz2
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar.lz
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar.xz
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.tar.zst
nixpkgs-204f7dc3350f0b5c97b236c3fff0f65002c857f6.zip
ocamlPackages.irmin: 2.6.0 -> 2.7.1 (#129434)
* ocamlPackages.irmin: 2.6.0 -> 2.7.1

https://github.com/mirage/irmin/releases/tag/2.7.1

* ocamlPackages.index: 1.3.1 -> 1.4.0

https://github.com/mirage/index/releases/tag/1.4.0

* ocamlPackages.repr: 0.3.0 -> 0.4.0

https://github.com/mirage/repr/releases/tag/0.4.0

Co-authored-by: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>
Diffstat (limited to 'pkgs/development/ocaml-modules/irmin')
-rw-r--r--pkgs/development/ocaml-modules/irmin/pack.nix4
-rw-r--r--pkgs/development/ocaml-modules/irmin/ppx.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/ocaml-modules/irmin/pack.nix b/pkgs/development/ocaml-modules/irmin/pack.nix
index 16ef675c1f8..5955dda8ed9 100644
--- a/pkgs/development/ocaml-modules/irmin/pack.nix
+++ b/pkgs/development/ocaml-modules/irmin/pack.nix
@@ -1,5 +1,5 @@
 { lib, buildDunePackage
-, alcotest-lwt, index, irmin, irmin-layers, irmin-test, ocaml_lwt, fpath
+, alcotest-lwt, index, irmin, irmin-layers, irmin-test, ocaml_lwt, fpath, optint
 }:
 
 buildDunePackage rec {
@@ -12,7 +12,7 @@ buildDunePackage rec {
   useDune2 = true;
 
   buildInputs = [ fpath ];
-  propagatedBuildInputs = [ index irmin irmin-layers ocaml_lwt ];
+  propagatedBuildInputs = [ index irmin irmin-layers ocaml_lwt optint ];
 
   checkInputs = [ alcotest-lwt irmin-test ];
 
diff --git a/pkgs/development/ocaml-modules/irmin/ppx.nix b/pkgs/development/ocaml-modules/irmin/ppx.nix
index c7eed70d9d9..673238843ff 100644
--- a/pkgs/development/ocaml-modules/irmin/ppx.nix
+++ b/pkgs/development/ocaml-modules/irmin/ppx.nix
@@ -2,11 +2,11 @@
 
 buildDunePackage rec {
   pname = "ppx_irmin";
-  version = "2.6.0";
+  version = "2.7.1";
 
   src = fetchurl {
     url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
-    sha256 = "1db134221e82c424260a0e206b640fcb82902be35eea4137af2bcd9c98d3ac0f";
+    sha256 = "fac7c032f472fb369378ad2d8fe77e7cd3b3c1c6a0d7bf59980b69528891b399";
   };
 
   minimumOCamlVersion = "4.08";