lol

eiciel: 0.9.13.1 → 0.10.0-rc2

https://github.com/rofirrim/eiciel/releases/tag/0.10.0-rc1
https://github.com/rofirrim/eiciel/releases/tag/0.10.0-rc2

Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>

+14 -9
+14 -9
pkgs/tools/filesystems/eiciel/default.nix
··· 3 3 , stdenv 4 4 , acl 5 5 , gnome 6 - , gtkmm3 6 + , glibmm_2_68 7 + , gtkmm4 7 8 , meson 8 9 , ninja 9 10 , pkg-config 10 - , wrapGAppsHook 11 + , itstool 12 + , wrapGAppsHook4 13 + , gtk4 11 14 }: 12 15 13 16 stdenv.mkDerivation rec { 14 17 pname = "eiciel"; 15 - version = "0.9.13.1"; 18 + version = "0.10.0-rc2"; 16 19 17 20 outputs = [ "out" "nautilusExtension" ]; 18 21 ··· 20 23 owner = "rofirrim"; 21 24 repo = "eiciel"; 22 25 rev = version; 23 - sha256 = "0rhhw0h1hyg5kvxhjxkdz03vylgax6912mg8j4lvcz6wlsa4wkvj"; 26 + sha256 = "+MXoT6J4tKuFaSvUTcM15cKWLUnS0kYgBfqH+5lz6KY="; 24 27 }; 25 28 26 29 nativeBuildInputs = [ 27 30 meson 28 31 ninja 29 32 pkg-config 30 - wrapGAppsHook 33 + itstool 34 + wrapGAppsHook4 35 + gtk4 31 36 ]; 32 37 33 38 buildInputs = [ 34 39 acl 35 - gtkmm3 40 + glibmm_2_68 41 + gtkmm4 36 42 gnome.nautilus 37 43 ]; 38 44 39 45 mesonFlags = [ 40 - "-Dnautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-3.0" 46 + "-Dnautilus-extension-dir=${placeholder "nautilusExtension"}/lib/nautilus/extensions-4" 41 47 ]; 42 48 43 49 postPatch = '' 50 + # https://github.com/rofirrim/eiciel/pull/9 44 51 substituteInPlace meson.build --replace "compiler.find_library('libacl')" "compiler.find_library('acl')" 45 - chmod +x img/install_icons.sh 46 - patchShebangs img/install_icons.sh 47 52 ''; 48 53 49 54 meta = with lib; {