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