lol

ocamlPackages.progress: 0.1.1 → 0.2.1

ocamlPackages.index: 1.4.0 → 1.4.1

+10 -13
+3 -3
pkgs/development/ocaml-modules/index/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "index"; 9 - version = "1.4.0"; 9 + version = "1.4.1"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/mirage/index/releases/download/${version}/index-${version}.tbz"; 13 - sha256 = "13xd858c50fs651p1y8x70323ff0gzbf6zgc0a25f6xh3rsmkn4c"; 13 + sha256 = "sha256:01i24m1xh7vn44sq7gsxg1z0jxa6rg80bpjcp3cvg6zfjpsl7sfx"; 14 14 }; 15 15 16 - minimumOCamlVersion = "4.08"; 16 + minimalOCamlVersion = "4.08"; 17 17 useDune2 = true; 18 18 19 19 buildInputs = [
+7 -10
pkgs/development/ocaml-modules/progress/default.nix
··· 1 - { lib, buildDunePackage, fetchurl 2 - , mtime, terminal_size, alcotest, astring, fmt 1 + { lib, buildDunePackage 2 + , fmt, logs, mtime, optint, terminal, vector 3 + , alcotest, astring 3 4 }: 4 5 5 6 buildDunePackage rec { 6 7 pname = "progress"; 7 - version = "0.1.1"; 8 8 9 - minimumOCamlVersion = "4.08"; 9 + minimalOCamlVersion = "4.08"; 10 10 useDune2 = true; 11 11 12 - src = fetchurl { 13 - url = "https://github.com/CraigFe/progress/releases/download/${version}/progress-${version}.tbz"; 14 - sha256 = "90c6bec19d014a4c6b0b67006f08bdfcf36981d2176769bebe0ccd75d6785a32"; 15 - }; 12 + inherit (terminal) version src; 16 13 17 - propagatedBuildInputs = [ mtime terminal_size ]; 14 + propagatedBuildInputs = [ fmt logs mtime optint terminal vector ]; 18 15 19 16 doCheck = true; 20 - checkInputs = [ alcotest astring fmt ]; 17 + checkInputs = [ alcotest astring ]; 21 18 22 19 meta = with lib; { 23 20 description = "Progress bar library for OCaml";