figsoda 2023-06-28 09:45:39 -04:00 committed by Matthieu Coudron
parent 59713b5555
commit 1db32903d2

View File

@ -12,16 +12,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "fclones-gui"; pname = "fclones-gui";
version = "0.1.4"; version = "0.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "pkolaczk"; owner = "pkolaczk";
repo = "fclones-gui"; repo = "fclones-gui";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-zJ5TqFmvUL1nKR8E+jGR4K6OGHJ4ckRky+bdKW0T30s="; hash = "sha256-ad7wyoCjSQ8i6c+4IorImqAY2Q6pwBtI2JkkbkGa46U=";
}; };
cargoHash = "sha256-QT4ZxjarPkEqJLKPsGAaMIaSUmKWZ1xtxWMe2uXaUek="; cargoHash = "sha256-7+I0Tj+DcrItU2apB1iMiYiTv9AeDparke86HkJNF3A=";
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config pkg-config
@ -36,6 +36,15 @@ rustPlatform.buildRustPackage rec {
darwin.apple_sdk_11_0.frameworks.IOKit 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; { meta = with lib; {
description = "Interactive duplicate file remover"; description = "Interactive duplicate file remover";
homepage = "https://github.com/pkolaczk/fclones-gui"; homepage = "https://github.com/pkolaczk/fclones-gui";