Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gimp: 3.0.0-RC1 → 3.0.0-RC2

https://www.gimp.org/news/2024/12/27/gimp-3-0-RC2-released/
https://github.com/GNOME/gimp/compare/GIMP_3_0_0_RC1...GIMP_3_0_0_RC2

Jan Tojnar ffdeaff3 328415cc

+7 -7
+3 -3
pkgs/applications/graphics/gimp/default.nix
··· 80 80 in 81 81 stdenv.mkDerivation (finalAttrs: { 82 82 pname = "gimp"; 83 - version = "3.0.0-RC1"; 83 + version = "3.0.0-RC2"; 84 84 85 85 outputs = [ 86 86 "out" ··· 90 90 91 91 src = fetchurl { 92 92 url = "https://download.gimp.org/gimp/v${lib.versions.majorMinor finalAttrs.version}/gimp-${finalAttrs.version}.tar.xz"; 93 - hash = "sha256-s9CyZMXjjnifqvNBcAM5fzJAAUxZx/QX+co705xf+2Y="; 93 + hash = "sha256-9NL5bfGAzlVD+LKzVwe5vxFFnwD3Jspz2i9AbWhtnbc="; 94 94 }; 95 95 96 96 patches = [ ··· 105 105 # TODO: This now only appears to be used on Windows. 106 106 (replaceVars ./hardcode-plugin-interpreters.patch { 107 107 python_interpreter = python.interpreter; 108 - PYTHON_PATH = null; 108 + PYTHON_EXE = null; 109 109 }) 110 110 111 111 # D-Bus configuration is not available in the build sandbox
+4 -4
pkgs/applications/graphics/gimp/hardcode-plugin-interpreters.patch
··· 1 1 --- a/plug-ins/python/pygimp.interp.in 2 2 +++ b/plug-ins/python/pygimp.interp.in 3 - @@ -2,4 +2,4 @@ python=@PYTHON_PATH@ 4 - python3=@PYTHON_PATH@python.exe 5 - /usr/bin/python=@PYTHON_PATH@python.exe 6 - /usr/bin/python3=@PYTHON_PATH@python.exe 3 + @@ -2,4 +2,4 @@ python=@PYTHON_EXE@ 4 + python3=@PYTHON_EXE@ 5 + /usr/bin/python=@PYTHON_EXE@ 6 + /usr/bin/python3=@PYTHON_EXE@ 7 7 -:Python:E::py::python3: 8 8 +:Python:E::py::@python_interpreter@: