mate.pluma: 1.26.1 -> 1.28.0

https://github.com/mate-desktop/pluma/compare/v1.26.1...v1.28.0

Also drops adwaita-icon-theme, XDG_ICON_DIRS is not picked up
by wrapGAppsHook for a while and we are fine.

+3 -5
+1 -1
pkgs/desktops/mate/default.nix
··· 50 50 mate-user-share = callPackage ./mate-user-share { }; 51 51 mate-utils = callPackage ./mate-utils { }; 52 52 mozo = callPackage ./mozo { }; 53 - pluma = callPackage ./pluma { inherit (pkgs.gnome) adwaita-icon-theme; }; 53 + pluma = callPackage ./pluma { }; 54 54 python-caja = callPackage ./python-caja { }; 55 55 56 56 basePackages = [
+2 -4
pkgs/desktops/mate/pluma/default.nix
··· 9 9 , enchant 10 10 , libxml2 11 11 , python3 12 - , adwaita-icon-theme 13 12 , gtksourceview4 14 13 , libpeas 15 14 , mate-desktop ··· 19 18 20 19 stdenv.mkDerivation rec { 21 20 pname = "pluma"; 22 - version = "1.26.1"; 21 + version = "1.28.0"; 23 22 24 23 src = fetchurl { 25 24 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 - sha256 = "WVns49cRjhBmWfZNIC0O0XY60Qu7ul0qzYy/ui45lPE="; 25 + sha256 = "qorflYk0UJOlDjCyft5KeKJCHRcnwn9GX8h8Q1llodQ="; 27 26 }; 28 27 29 28 nativeBuildInputs = [ ··· 37 36 ]; 38 37 39 38 buildInputs = [ 40 - adwaita-icon-theme 41 39 enchant 42 40 gtksourceview4 43 41 libpeas