Unverified Commit 698f6681 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

gimp: 2.10.38 -> 3.0.4 (#448263)

parents 866019d4 6c7eb8fc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -237,6 +237,8 @@

- [`homebox` 0.20.0](https://github.com/sysadminsmedia/homebox/releases/tag/v0.20.0) changed how assets are stored and hashed. It is recommended to back up your database before this update.

- GIMP now defaults to version 3. Use `gimp2` for the old version.

- `installShellCompletion`: now supports Nushell completion files

- New hardening flags, `strictflexarrays1` and `strictflexarrays3` were made available, corresponding to the gcc/clang options `-fstrict-flex-arrays=1` and `-fstrict-flex-arrays=3` respectively.
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
  gettext,
  povray,
  imagemagick,
  gimp,
  gimp2,

  sdl2-compat,
  SDL2_mixer,
@@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: {
    gettext
    povray
    imagemagick
    gimp
    gimp2
    # GIMP needs a writable home
    writableTmpDirAsHomeHook
  ];
+3 −0
Original line number Diff line number Diff line
@@ -1025,6 +1025,9 @@ mapAliases {
  gg = go-graft; # Added 2025-03-07
  ggobi = throw "'ggobi' has been removed from Nixpkgs, as it is unmaintained and broken"; # Added 2025-05-18
  ghostwriter = makePlasma5Throw "ghostwriter"; # Added 2023-03-18
  gimp3 = gimp; # added 2025-10-03
  gimp3-with-plugins = gimp-with-plugins; # added 2025-10-03
  gimp3Plugins = gimpPlugins; # added 2025-10-03
  git-annex-utils = throw "'git-annex-utils' has been removed as it is unmaintained"; # Added 2025-05-18
  git-codeowners = throw "'git-codeowners' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
  gjay = throw "'gjay' has been removed as it is unmaintained upstream"; # Added 2025-05-25
+6 −6
Original line number Diff line number Diff line
@@ -11310,22 +11310,22 @@ with pkgs;
    freeoffice
    ;

  gimp3 = callPackage ../applications/graphics/gimp {
  gimp2 = callPackage ../applications/graphics/gimp/2.0 {
    lcms = lcms2;
  };

  gimp3-with-plugins = callPackage ../applications/graphics/gimp/wrapper.nix {
    gimpPlugins = gimp3Plugins;
  gimp2-with-plugins = callPackage ../applications/graphics/gimp/wrapper.nix {
    gimpPlugins = gimp2Plugins;
    plugins = null; # All packaged plugins enabled, if not explicit plugin list supplied
  };

  gimp3Plugins = recurseIntoAttrs (
  gimp2Plugins = recurseIntoAttrs (
    callPackage ../applications/graphics/gimp/plugins {
      gimp = gimp3;
      gimp = gimp2;
    }
  );

  gimp = callPackage ../applications/graphics/gimp/2.0 {
  gimp = callPackage ../applications/graphics/gimp {
    lcms = lcms2;
  };

+2 −2
Original line number Diff line number Diff line
@@ -151,7 +151,7 @@ let
            # jobs.firefox-unwrapped.x86_64-darwin
            jobs.qt5.qtmultimedia.x86_64-darwin
            jobs.inkscape.x86_64-darwin
            jobs.gimp.x86_64-darwin
            jobs.gimp2.x86_64-darwin # FIXME replace with gimp once https://github.com/NixOS/nixpkgs/issues/411189 is resoved
            jobs.emacs.x86_64-darwin
            jobs.wireshark.x86_64-darwin
            jobs.transmission_3-gtk.x86_64-darwin
@@ -195,7 +195,7 @@ let
            # jobs.firefox-unwrapped.aarch64-darwin
            jobs.qt5.qtmultimedia.aarch64-darwin
            jobs.inkscape.aarch64-darwin
            jobs.gimp.aarch64-darwin
            jobs.gimp2.aarch64-darwin # FIXME replace with gimp once https://github.com/NixOS/nixpkgs/issues/411189 is resoved
            jobs.emacs.aarch64-darwin
            jobs.wireshark.aarch64-darwin
            jobs.transmission_3-gtk.aarch64-darwin