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