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