Gimp 3 not on nixpkgs?

I cant find gimp 3 in nixpkgs, It’s still gimp 2.10.38. NixOS Search

Is there a way to get gimp 3?

1 Like

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

3 Likes

In the meanwhile, you could try the Flatpak or Snap packages.

1 Like

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! :stuck_out_tongue:

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
6 Likes

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'
1 Like

This seems to be solved.

I installed gimp3-with-plugins and it works!

2 Likes

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.

1 Like

Thank you! Updating that helped!