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