From 6c7265cae4f78a17ac5202bf7c21fc235ebf426b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 8 May 2023 14:00:09 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.lambdasoup:=200.7.3=20=E2=86=92?= =?UTF-8?q?=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../development/ocaml-modules/lambdasoup/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/lambdasoup/default.nix b/pkgs/development/ocaml-modules/lambdasoup/default.nix index d7d0028b2c15..c01faa3eec0a 100644 --- a/pkgs/development/ocaml-modules/lambdasoup/default.nix +++ b/pkgs/development/ocaml-modules/lambdasoup/default.nix @@ -1,21 +1,21 @@ -{ lib, fetchFromGitHub, buildDunePackage, ocaml, markup, ounit2 }: +{ lib, fetchFromGitHub, buildDunePackage, ocaml, camlp-streams, markup, ounit2 }: buildDunePackage rec { pname = "lambdasoup"; - version = "0.7.3"; + version = "1.0.0"; - minimalOCamlVersion = "4.02"; + minimalOCamlVersion = "4.03"; - useDune2 = true; + duneVersion = "3"; src = fetchFromGitHub { owner = "aantron"; repo = pname; rev = version; - sha256 = "sha256:1wclkn1pl0d150dw0xswb29jc7y1q9mhipff1pnsc1hli3pyvvb7"; + hash = "sha256-PZkhN5vkkLu8A3gYrh5O+nq9wFtig0Q4qD8zLGUGTRI="; }; - propagatedBuildInputs = [ markup ]; + propagatedBuildInputs = [ camlp-streams markup ]; doCheck = lib.versionAtLeast ocaml.version "4.04"; checkInputs = [ ounit2 ];