Merge pull request #274372 from vbgl/ocaml-angstrom-0.16.0

ocamlPackages.angstrom: 0.15.0 → 0.16.0

authored by

Ulrik Strid and committed by
GitHub
bc2ae87f 9a9178ba

+6 -13
-1
pkgs/development/ocaml-modules/angstrom-async/default.nix
··· 5 5 6 6 inherit (angstrom) version src; 7 7 8 - duneVersion = "3"; 9 8 minimalOCamlVersion = "4.04.1"; 10 9 11 10 propagatedBuildInputs = [ angstrom async ];
-2
pkgs/development/ocaml-modules/angstrom-lwt-unix/default.nix
··· 5 5 6 6 inherit (angstrom) version src; 7 7 8 - duneVersion = "3"; 9 - 10 8 propagatedBuildInputs = [ angstrom lwt ]; 11 9 12 10 doCheck = true;
-2
pkgs/development/ocaml-modules/angstrom-unix/default.nix
··· 5 5 6 6 inherit (angstrom) version src; 7 7 8 - duneVersion = "3"; 9 - 10 8 propagatedBuildInputs = [ angstrom ]; 11 9 12 10 doCheck = true;
+4 -5
pkgs/development/ocaml-modules/angstrom/default.nix
··· 1 - { lib, fetchFromGitHub, buildDunePackage, ocaml, ocaml-syntax-shims, alcotest, result, bigstringaf, ppx_let, gitUpdater }: 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml, ocaml-syntax-shims, alcotest, bigstringaf, ppx_let, gitUpdater }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "angstrom"; 5 - version = "0.15.0"; 6 - duneVersion = "3"; 5 + version = "0.16.0"; 7 6 8 7 minimalOCamlVersion = "4.04"; 9 8 ··· 11 10 owner = "inhabitedtype"; 12 11 repo = pname; 13 12 rev = version; 14 - sha256 = "1hmrkdcdlkwy7rxhngf3cv3sa61cznnd9p5lmqhx20664gx2ibrh"; 13 + hash = "sha256-vilGto5ciyKzVJd72z4B+AvM1nf3x3O7DHXrK5SIajQ="; 15 14 }; 16 15 17 16 checkInputs = [ alcotest ppx_let ]; 18 17 buildInputs = [ ocaml-syntax-shims ]; 19 - propagatedBuildInputs = [ bigstringaf result ]; 18 + propagatedBuildInputs = [ bigstringaf ]; 20 19 doCheck = lib.versionAtLeast ocaml.version "4.08"; 21 20 22 21 passthru.updateScript = gitUpdater { };
+2 -3
pkgs/development/ocaml-modules/httpaf/default.nix
··· 1 1 { lib, fetchFromGitHub, fetchpatch, buildDunePackage 2 - , angstrom, faraday, alcotest 2 + , angstrom, faraday, result, alcotest 3 3 }: 4 4 5 5 buildDunePackage rec { 6 6 pname = "httpaf"; 7 7 version = "0.7.1"; 8 8 9 - duneVersion = "3"; 10 9 minimalOCamlVersion = "4.08"; 11 10 12 11 src = fetchFromGitHub { ··· 17 16 }; 18 17 19 18 checkInputs = [ alcotest ]; 20 - propagatedBuildInputs = [ angstrom faraday ]; 19 + propagatedBuildInputs = [ angstrom faraday result ]; 21 20 doCheck = true; 22 21 23 22 meta = {