ocamlPackages.bisect_ppx: 2.8.1 → 2.8.2

This commit is contained in:
Vincent Laporte 2023-04-14 21:55:05 +02:00
parent 1cb472891d
commit a3b117a70a
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -2,23 +2,18 @@
buildDunePackage rec { buildDunePackage rec {
pname = "bisect_ppx"; pname = "bisect_ppx";
version = "2.8.1"; version = "2.8.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aantron"; owner = "aantron";
repo = "bisect_ppx"; repo = "bisect_ppx";
rev = version; rev = version;
sha256 = "sha256-pOeeSxzUF1jXQjA71atSZALdgQ2NB9qpKo5iaDnPwhQ="; hash = "sha256-Uc5ZYL6tORcCCvCe9UmOnBF68FqWpQ4bc48fTQwnfis=";
}; };
patches = lib.optionals (lib.versionAtLeast ppxlib.version "0.26.0") [ patches = [
# Ppxlib >= 0.26.0 compatibility # Ppxlib >= 0.28.0 compatibility
# remove when a new version is released # remove when a new version is released
(fetchpatch {
name = "${pname}-${version}-ppxlib-0.26-compatibility.patch";
url = "https://patch-diff.githubusercontent.com/raw/aantron/bisect_ppx/pull/400.patch";
sha256 = "sha256-WAn6+d6pMUr79LVugOENuh9s0gbVEcTg0rxXMz1P3ak=";
})
(fetchpatch { (fetchpatch {
name = "${pname}-${version}-ppxlib-0.28-compatibility.patch"; name = "${pname}-${version}-ppxlib-0.28-compatibility.patch";
url = "https://github.com/anmonteiro/bisect_ppx/commit/cc442a08e3a2e0e18deb48f3a696076ac0986728.patch"; url = "https://github.com/anmonteiro/bisect_ppx/commit/cc442a08e3a2e0e18deb48f3a696076ac0986728.patch";
@ -26,7 +21,8 @@ buildDunePackage rec {
}) })
]; ];
minimalOCamlVersion = "4.08"; minimalOCamlVersion = "4.11";
duneVersion = "3";
buildInputs = [ buildInputs = [
cmdliner cmdliner