lol

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>

authored by

Daniel Hines
sternenseemann
and committed by
GitHub
204f7dc3 0f4cee58

+11 -10
+4 -3
pkgs/development/ocaml-modules/index/default.nix
··· 1 1 { lib, fetchurl, buildDunePackage 2 2 , repr, ppx_repr, fmt, logs, mtime, stdlib-shims 3 - , cmdliner, progress, semaphore-compat 3 + , cmdliner, progress, semaphore-compat, optint 4 4 , alcotest, crowbar, re 5 5 }: 6 6 7 7 buildDunePackage rec { 8 8 pname = "index"; 9 - version = "1.3.1"; 9 + version = "1.4.0"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz"; 13 - sha256 = "sha256-ycZi/TFLoGRloSpjYqH5FCHWP3eyiTCIDLESEn5inuI="; 13 + sha256 = "13xd858c50fs651p1y8x70323ff0gzbf6zgc0a25f6xh3rsmkn4c"; 14 14 }; 15 15 16 16 minimumOCamlVersion = "4.08"; ··· 28 28 progress 29 29 repr 30 30 semaphore-compat 31 + optint 31 32 ]; 32 33 33 34 checkInputs = [
+2 -2
pkgs/development/ocaml-modules/irmin/pack.nix
··· 1 1 { lib, buildDunePackage 2 - , alcotest-lwt, index, irmin, irmin-layers, irmin-test, ocaml_lwt, fpath 2 + , alcotest-lwt, index, irmin, irmin-layers, irmin-test, ocaml_lwt, fpath, optint 3 3 }: 4 4 5 5 buildDunePackage rec { ··· 12 12 useDune2 = true; 13 13 14 14 buildInputs = [ fpath ]; 15 - propagatedBuildInputs = [ index irmin irmin-layers ocaml_lwt ]; 15 + propagatedBuildInputs = [ index irmin irmin-layers ocaml_lwt optint ]; 16 16 17 17 checkInputs = [ alcotest-lwt irmin-test ]; 18 18
+2 -2
pkgs/development/ocaml-modules/irmin/ppx.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "ppx_irmin"; 5 - version = "2.6.0"; 5 + version = "2.7.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz"; 9 - sha256 = "1db134221e82c424260a0e206b640fcb82902be35eea4137af2bcd9c98d3ac0f"; 9 + sha256 = "fac7c032f472fb369378ad2d8fe77e7cd3b3c1c6a0d7bf59980b69528891b399"; 10 10 }; 11 11 12 12 minimumOCamlVersion = "4.08";
+2 -2
pkgs/development/ocaml-modules/repr/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "repr"; 5 - version = "0.3.0"; 5 + version = "0.4.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/mirage/${pname}/releases/download/${version}/${pname}-fuzz-${version}.tbz"; 9 - sha256 = "sha256-2b0v5RwutvyidzEDTEb5p33IvJ+3t2IW+KVxYD1ufXQ="; 9 + sha256 = "1kpwgncyxcrq90dn7ilja7c5i88whc3fz4fmq1lwr0ar95d7d48p"; 10 10 }; 11 11 12 12 minimumOCamlVersion = "4.08";
+1 -1
pkgs/development/ocaml-modules/repr/ppx.nix
··· 1 - { buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }: 1 + { lib, buildDunePackage, ppx_deriving, ppxlib, repr, alcotest, hex }: 2 2 3 3 buildDunePackage { 4 4 pname = "ppx_repr";