I cant find gimp 3 in nixpkgs, It’s still gimp 2.10.38. NixOS Search
Is there a way to get gimp 3?
I cant find gimp 3 in nixpkgs, It’s still gimp 2.10.38. NixOS Search
Is there a way to get gimp 3?
It’s not packaged yet. The ongoing work is happening in this PR: gimp: 2.10.38 → 3.0.0 by jtojnar · Pull Request #67576 · NixOS/nixpkgs · GitHub
In the meanwhile, you could try the Flatpak or Snap packages.
Is there a flake to try the testing out or does it all need to be hosted on a nix git?
Oof, this is what happens to your brain on flakes!
You can test out any Nixpkgs PR with OG Nix commands if you know (A) who submitted it and (B) the last commit hash in the PR.
In this case:
$ nix-build -A gimp3 https://github.com/jtojnar/nixpkgs/archive/fa4992dd39f48279eb33db114c623abccae09384.tar.gz
I can see gimp3
in NixOS Search page in the unstable channel. Though is it a working package? Because upon rebuilding the system after adding gimp3
I get the error:
error: undefined variable 'gimp3'
This seems to be solved.
I installed gimp3-with-plugins
and it works!
Check that you are using the updated nixpkgs (nixos-unstable), nix flake update nixpkgs
or if using channels don’t forget to update the channel.
nix-shell -p gimp3 --run gimp
works for me.
Thank you! Updating that helped!