Why do you think that GIMP requires such an ancient GTK version? The latest pre-release version (2.99.18) actually expects at least 3.24.0.
This does not really replace GTK used by GIMP, you would need to use override
for that.
Replacing gtk
using overrideAttrs
this mainly does the two following things:
- It modifies the attribute set passed as an argument to
stdenv.mkDerivation
, addinggtk
, whichmkDerivation
will pass asgtk
environment variable to the builder.- This causes your
gtk3-gimp
to become a build dependency forgimp
(and thus to be built beforegimp
can be built). - But since the
gimp
’s builder does not care aboutgtk
environment variable, it will not do anything with the dependency. You could just as well dogimp.overrideAttrs { foobar = final.gtk3-gimp; }
- This causes your
- It shadows the
gimp.gtk
attribute frompassthru
, which is only used by plug-ins. But plug-ins require GIMP itself to build so it won’t be of much use.
By the way, packaging such different versions is not as easy as replacing the source. There will be significant divergences between dependencies. See gimp: Testing dev version with Meson by jtojnar · Pull Request #67576 · NixOS/nixpkgs · GitHub for what is actually needed.