Commit 1db32903 authored by figsoda's avatar figsoda Committed by Matthieu Coudron
Browse files
parent 59713b55
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -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";