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