Unverified Commit 548c591c authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #240033 from figsoda/fclones-gui

fclones-gui: 0.1.3 -> 0.1.4
parents 6b28b64c e1835198
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
{ lib
, rustPlatform
, fetchCrate
, fetchFromGitHub
, pkg-config
, wrapGAppsHook4
, gdk-pixbuf
@@ -12,14 +12,16 @@

rustPlatform.buildRustPackage rec {
  pname = "fclones-gui";
  version = "0.1.3";
  version = "0.1.4";

  src = fetchCrate {
    inherit pname version;
    hash = "sha256-SQJ6CZlvu4V9Rs+rhH4jMf0AVWs71KvRUnUxGPlgj80=";
  src = fetchFromGitHub {
    owner = "pkolaczk";
    repo = "fclones-gui";
    rev = "v${version}";
    hash = "sha256-zJ5TqFmvUL1nKR8E+jGR4K6OGHJ4ckRky+bdKW0T30s=";
  };

  cargoHash = "sha256-8WLYbEbPrR8c0y+Uaxo6YGiFRt7FLHZM+1O/UZq0c7g=";
  cargoHash = "sha256-QT4ZxjarPkEqJLKPsGAaMIaSUmKWZ1xtxWMe2uXaUek=";

  nativeBuildInputs = [
    pkg-config
@@ -36,7 +38,8 @@ rustPlatform.buildRustPackage rec {

  meta = with lib; {
    description = "Interactive duplicate file remover";
    homepage = "https://github.com/pkolaczk/fclones/tree/main/fclones-gui";
    homepage = "https://github.com/pkolaczk/fclones-gui";
    changelog = "https://github.com/pkolaczk/fclones-gui/releases/tag/${src.rev}";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
  };