diff --git a/pkgs/tools/misc/fclones/gui.nix b/pkgs/tools/misc/fclones/gui.nix index 2652b674e39..7b2d063d45b 100644 --- a/pkgs/tools/misc/fclones/gui.nix +++ b/pkgs/tools/misc/fclones/gui.nix @@ -12,16 +12,16 @@ rustPlatform.buildRustPackage rec { pname = "fclones-gui"; - version = "0.1.4"; + version = "0.2.0"; src = fetchFromGitHub { owner = "pkolaczk"; repo = "fclones-gui"; rev = "v${version}"; - hash = "sha256-zJ5TqFmvUL1nKR8E+jGR4K6OGHJ4ckRky+bdKW0T30s="; + hash = "sha256-ad7wyoCjSQ8i6c+4IorImqAY2Q6pwBtI2JkkbkGa46U="; }; - cargoHash = "sha256-QT4ZxjarPkEqJLKPsGAaMIaSUmKWZ1xtxWMe2uXaUek="; + cargoHash = "sha256-7+I0Tj+DcrItU2apB1iMiYiTv9AeDparke86HkJNF3A="; nativeBuildInputs = [ pkg-config @@ -36,6 +36,15 @@ rustPlatform.buildRustPackage rec { darwin.apple_sdk_11_0.frameworks.IOKit ]; + postInstall = '' + substituteInPlace snap/gui/fclones-gui.desktop \ + --replace Exec=fclones-gui Exec=$out/bin/fclones-gui \ + --replace 'Icon=''${SNAP}/meta/gui/fclones-gui.png' Icon=fclones-gui + + install -Dm444 snap/gui/fclones-gui.desktop -t $out/share/applications + install -Dm444 snap/gui/fclones-gui.png -t $out/share/pixmaps + ''; + meta = with lib; { description = "Interactive duplicate file remover"; homepage = "https://github.com/pkolaczk/fclones-gui";