Merge pull request #240033 from figsoda/fclones-gui

fclones-gui: 0.1.3 -> 0.1.4

authored by

Nick Cao and committed by
GitHub
548c591c 6b28b64c

+10 -7
+10 -7
pkgs/tools/misc/fclones/gui.nix
··· 1 { lib 2 , rustPlatform 3 - , fetchCrate 4 , pkg-config 5 , wrapGAppsHook4 6 , gdk-pixbuf ··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "fclones-gui"; 15 - version = "0.1.3"; 16 17 - src = fetchCrate { 18 - inherit pname version; 19 - hash = "sha256-SQJ6CZlvu4V9Rs+rhH4jMf0AVWs71KvRUnUxGPlgj80="; 20 }; 21 22 - cargoHash = "sha256-8WLYbEbPrR8c0y+Uaxo6YGiFRt7FLHZM+1O/UZq0c7g="; 23 24 nativeBuildInputs = [ 25 pkg-config ··· 36 37 meta = with lib; { 38 description = "Interactive duplicate file remover"; 39 - homepage = "https://github.com/pkolaczk/fclones/tree/main/fclones-gui"; 40 license = licenses.mit; 41 maintainers = with maintainers; [ figsoda ]; 42 };
··· 1 { lib 2 , rustPlatform 3 + , fetchFromGitHub 4 , pkg-config 5 , wrapGAppsHook4 6 , gdk-pixbuf ··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "fclones-gui"; 15 + version = "0.1.4"; 16 17 + src = fetchFromGitHub { 18 + owner = "pkolaczk"; 19 + repo = "fclones-gui"; 20 + rev = "v${version}"; 21 + hash = "sha256-zJ5TqFmvUL1nKR8E+jGR4K6OGHJ4ckRky+bdKW0T30s="; 22 }; 23 24 + cargoHash = "sha256-QT4ZxjarPkEqJLKPsGAaMIaSUmKWZ1xtxWMe2uXaUek="; 25 26 nativeBuildInputs = [ 27 pkg-config ··· 38 39 meta = with lib; { 40 description = "Interactive duplicate file remover"; 41 + homepage = "https://github.com/pkolaczk/fclones-gui"; 42 + changelog = "https://github.com/pkolaczk/fclones-gui/releases/tag/${src.rev}"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ figsoda ]; 45 };