From 867605fbf06262b885163f5cc74ca83c199d607d Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 20 Jan 2026 06:05:45 +0000 Subject: [PATCH] =?UTF-8?q?babl:=200.1.116=20=E2=86=92=200.1.120?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/babl/-/compare/BABL_0_1_116...28d1099aaa1a518ee1b82aef4816da1670037f84 Introduces `relocatable` feature defaulting to `auto` (interpreted as `enabled` on Win32 or MacOS, `disabled` elsewhere) but since our Meson setup hooks passes `-Dauto_features=enabled`, we would be enabling it everywhere. Let’s explicitly disable it for Linux like expected, and for other platforms since I cannot test it there. --- pkgs/by-name/ba/babl/package.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ba/babl/package.nix b/pkgs/by-name/ba/babl/package.nix index fe499cb872b5..3454630b2dd1 100644 --- a/pkgs/by-name/ba/babl/package.nix +++ b/pkgs/by-name/ba/babl/package.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "babl"; - version = "0.1.116"; + version = "0.1.120"; outputs = [ "out" @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "https://download.gimp.org/pub/babl/${lib.versions.majorMinor finalAttrs.version}/babl-${finalAttrs.version}.tar.xz"; - hash = "sha256-UPrgaYZ8et4SWYiP8ePbhf7IbXCCUuU4W1pPOaeOxIM="; + hash = "sha256-9HatFSAftO0MkMF0xSSx5CcczWmjdyQtamn834fOrMI="; }; patches = [ @@ -46,6 +46,9 @@ stdenv.mkDerivation (finalAttrs: { mesonFlags = [ "-Dprefix-dev=${placeholder "dev"}" + # On Linux, this would be disabled by default but we have -Dauto_features=enabled. + # Disable it on other platforms too, since I cannot test it there. + "-Drelocatable=disabled" ] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ # Docs are opt-out in native but opt-in in cross builds.