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

ocamlPackages.angstrom: 0.15.0 → 0.16.0
This commit is contained in:
Ulrik Strid 2023-12-15 08:02:17 +01:00 committed by GitHub
commit bc2ae87f8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 13 deletions

View File

@ -5,7 +5,6 @@ buildDunePackage rec {
inherit (angstrom) version src;
duneVersion = "3";
minimalOCamlVersion = "4.04.1";
propagatedBuildInputs = [ angstrom async ];

View File

@ -5,8 +5,6 @@ buildDunePackage rec {
inherit (angstrom) version src;
duneVersion = "3";
propagatedBuildInputs = [ angstrom lwt ];
doCheck = true;

View File

@ -5,8 +5,6 @@ buildDunePackage rec {
inherit (angstrom) version src;
duneVersion = "3";
propagatedBuildInputs = [ angstrom ];
doCheck = true;

View File

@ -1,9 +1,8 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml, ocaml-syntax-shims, alcotest, result, bigstringaf, ppx_let, gitUpdater }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml, ocaml-syntax-shims, alcotest, bigstringaf, ppx_let, gitUpdater }:
buildDunePackage rec {
pname = "angstrom";
version = "0.15.0";
duneVersion = "3";
version = "0.16.0";
minimalOCamlVersion = "4.04";
@ -11,12 +10,12 @@ buildDunePackage rec {
owner = "inhabitedtype";
repo = pname;
rev = version;
sha256 = "1hmrkdcdlkwy7rxhngf3cv3sa61cznnd9p5lmqhx20664gx2ibrh";
hash = "sha256-vilGto5ciyKzVJd72z4B+AvM1nf3x3O7DHXrK5SIajQ=";
};
checkInputs = [ alcotest ppx_let ];
buildInputs = [ ocaml-syntax-shims ];
propagatedBuildInputs = [ bigstringaf result ];
propagatedBuildInputs = [ bigstringaf ];
doCheck = lib.versionAtLeast ocaml.version "4.08";
passthru.updateScript = gitUpdater { };

View File

@ -1,12 +1,11 @@
{ lib, fetchFromGitHub, fetchpatch, buildDunePackage
, angstrom, faraday, alcotest
, angstrom, faraday, result, alcotest
}:
buildDunePackage rec {
pname = "httpaf";
version = "0.7.1";
duneVersion = "3";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
@ -17,7 +16,7 @@ buildDunePackage rec {
};
checkInputs = [ alcotest ];
propagatedBuildInputs = [ angstrom faraday ];
propagatedBuildInputs = [ angstrom faraday result ];
doCheck = true;
meta = {