figsoda 2023-06-26 22:25:57 -04:00
parent 005c84e12a
commit e183519871

View File

@ -1,6 +1,6 @@
{ 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 ];
};