ocamlPackages.lambdasoup: 0.7.1 -> 0.7.2

This commit is contained in:
sternenseemann 2020-12-06 17:17:18 +01:00 committed by Vincent Laporte
parent 2830a80142
commit 30526f59a1
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,8 +1,10 @@
{ lib, fetchFromGitHub, buildDunePackage, markup }:
{ lib, fetchFromGitHub, buildDunePackage, ocaml, markup, ounit2 }:
buildDunePackage rec {
pname = "lambdasoup";
version = "0.7.1";
version = "0.7.2";
minimumOCamlVersion = "4.02";
useDune2 = true;
@ -10,11 +12,14 @@ buildDunePackage rec {
owner = "aantron";
repo = pname;
rev = version;
sha256 = "14lndpsnzjjg58sdwxqpsv7kz77mnwn5658lya9jyaclj8azmaks";
sha256 = "0php51lyz3ll0psazjd59yw02xb9w84150gkyiwmn3fa0iq8nf7m";
};
propagatedBuildInputs = [ markup ];
doCheck = lib.versionAtLeast ocaml.version "4.04";
checkInputs = [ ounit2 ];
meta = {
description = "Functional HTML scraping and rewriting with CSS in OCaml";
homepage = "https://aantron.github.io/lambdasoup/";