ocamlPackages.angstrom: 0.14.1 → 0.15.0

This commit is contained in:
sternenseemann 2020-09-29 15:02:37 +02:00 committed by Vincent Laporte
parent 031037f1ac
commit 47e704be1e
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,8 +1,8 @@
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, result, bigstringaf }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml, alcotest, result, bigstringaf, ppx_let }:
buildDunePackage rec {
pname = "angstrom";
version = "0.14.1";
version = "0.15.0";
minimumOCamlVersion = "4.04";
@ -10,10 +10,10 @@ buildDunePackage rec {
owner = "inhabitedtype";
repo = pname;
rev = version;
sha256 = "1l69y0qspgi7kgrphyh7718hjb2sml1a9lljkp65bkqmmmi6ybly";
sha256 = "1hmrkdcdlkwy7rxhngf3cv3sa61cznnd9p5lmqhx20664gx2ibrh";
};
checkInputs = [ alcotest ];
checkInputs = [ alcotest ppx_let ];
propagatedBuildInputs = [ bigstringaf result ];
doCheck = lib.versionAtLeast ocaml.version "4.05";