wml: migrate to pcre2 (#526143)

This commit is contained in:
Martin Weinelt 2026-06-01 00:33:52 +00:00 committed by GitHub
commit 501880c9da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@
lynx,
makeBinaryWrapper,
ncurses,
pcre,
pcre2,
perl,
perlPackages,
stdenv,
@ -31,13 +31,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "wml";
version = "2.32.0-unstable-2025-12-23";
version = "2.32.0-unstable-2026-05-08";
src = fetchFromGitHub {
owner = "thewml";
repo = "website-meta-language";
rev = "de200ecef0b2a64553799b1d83dfa65580d0bc16";
hash = "sha256-okeDaCX4Pp5qVFfHmaz+keagX6vgzFTtGoiim/pW6IA=";
rev = "673e78b37887f4d40c422759d634913c52e7334d";
hash = "sha256-rAxVha2Y16tEF+rLqebbAgBVPNrxYhNhvXnQ6/Oq1bg=";
};
sourceRoot = "${finalAttrs.src.name}/src";
@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = perlDeps ++ [
ncurses
pcre
pcre2
perl
];