cinnamon.nemo-extensions: 6.0.0 -> 6.0.1

https://github.com/linuxmint/nemo-extensions/compare/6.0.0...6.0.1

+9 -3
+4
pkgs/desktops/cinnamon/nemo-extensions/nemo-emblems/default.nix
··· 1 1 { python3 2 2 , lib 3 3 , fetchFromGitHub 4 + , cinnamon-translations 4 5 }: 5 6 6 7 let ··· 17 18 postPatch = '' 18 19 substituteInPlace setup.py \ 19 20 --replace "/usr/share" "share" 21 + 22 + substituteInPlace nemo-extension/nemo-emblems.py \ 23 + --replace "/usr/share/locale" "${cinnamon-translations}/share/locale" 20 24 ''; 21 25 22 26 meta = with lib; {
+3 -1
pkgs/desktops/cinnamon/nemo-extensions/nemo-fileroller/default.nix
··· 8 8 , gtk3 9 9 , nemo 10 10 , gnome 11 + , cinnamon-translations 11 12 }: 12 13 13 14 let ··· 33 34 34 35 postPatch = '' 35 36 substituteInPlace src/nemo-fileroller.c \ 36 - --replace "file-roller" "${lib.getExe gnome.file-roller}" 37 + --replace "file-roller" "${lib.getExe gnome.file-roller}" \ 38 + --replace "GNOMELOCALEDIR" "${cinnamon-translations}/share/locale" 37 39 ''; 38 40 39 41 PKG_CONFIG_LIBNEMO_EXTENSION_EXTENSIONDIR = "${placeholder "out"}/${nemo.extensiondir}";
+2 -2
pkgs/desktops/cinnamon/nemo-extensions/srcs.nix
··· 4 4 # When you bump this, you should make sure all nemo-extensions 5 5 # are actually using this file since we try to deal with tags 6 6 # like nemo-fileroller-5.6.1 according to upstream's wishes. 7 - version = "6.0.0"; 7 + version = "6.0.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "linuxmint"; 11 11 repo = "nemo-extensions"; 12 12 rev = version; 13 - sha256 = "sha256-M8ImntyfFfSL591UpqZosE7F8ydbpfrBhcLOBtW/sGQ="; 13 + sha256 = "sha256-zuE0SO5VJ2kKjK7JgsSf+wJgfyffTHhfICslEoPKK8Q="; 14 14 }; 15 15 }