Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

ocamlPackages.progress: init at 0.1.1

authored by

sternenseemann and committed by
Vincent Laporte
fdc9d991 6684094e

+30
+28
pkgs/development/ocaml-modules/progress/default.nix
··· 1 + { lib, buildDunePackage, fetchurl 2 + , mtime, terminal_size, alcotest, astring, fmt 3 + }: 4 + 5 + buildDunePackage rec { 6 + pname = "progress"; 7 + version = "0.1.1"; 8 + 9 + minimumOCamlVersion = "4.08"; 10 + useDune2 = true; 11 + 12 + src = fetchurl { 13 + url = "https://github.com/CraigFe/progress/releases/download/${version}/progress-${version}.tbz"; 14 + sha256 = "90c6bec19d014a4c6b0b67006f08bdfcf36981d2176769bebe0ccd75d6785a32"; 15 + }; 16 + 17 + propagatedBuildInputs = [ mtime terminal_size ]; 18 + 19 + doCheck = true; 20 + checkInputs = [ alcotest astring fmt ]; 21 + 22 + meta = with lib; { 23 + description = "Progress bar library for OCaml"; 24 + homepage = "https://github.com/CraigFe/progress"; 25 + license = licenses.mit; 26 + maintainers = [ maintainers.sternenseemann ]; 27 + }; 28 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 1014 1014 1015 1015 prof_spacetime = callPackage ../development/ocaml-modules/prof_spacetime { }; 1016 1016 1017 + progress = callPackage ../development/ocaml-modules/progress { }; 1018 + 1017 1019 ptmap = callPackage ../development/ocaml-modules/ptmap { }; 1018 1020 1019 1021 ptset = callPackage ../development/ocaml-modules/ptset { };