libxml2: bump to tip of 2.14 branch (#414734)

This commit is contained in:
Vladimír Čunát 2025-06-08 16:13:22 +02:00
commit ed49431a68
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -1,7 +1,7 @@
{
stdenv,
lib,
fetchurl,
fetchFromGitLab,
pkg-config,
autoreconfHook,
libintl,
@ -46,9 +46,12 @@ stdenv.mkDerivation (finalAttrs: {
++ lib.optional (enableStatic && enableShared) "static";
outputMan = "bin";
src = fetchurl {
url = "mirror://gnome/sources/libxml2/${lib.versions.majorMinor finalAttrs.version}/libxml2-${finalAttrs.version}.tar.xz";
hash = "sha256-beVcrMjCvHWPLvb5PDE8sw5N1dhKxdPHzL2TRNjMaDM=";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = "libxml2";
rev = "5133461b05f0f66e6c5b0fecd5f29dc5cd967302"; # some security- and bugfixes ahead of 2.14
hash = "sha256-xLRey6mRsRhgfASIQWOTofcQcLU0Daeg33pxGN0l66I=";
};
strictDeps = true;