From 37b721206e8cfaa635d2415f2b91056e55577acd Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 4 Jun 2023 16:22:03 -0400 Subject: [PATCH] fclones: 0.30.0 -> 0.31.0, add figsoda as a maintainer Diff: https://github.com/pkolaczk/fclones/compare/v0.30.0...v0.31.0 Changelog: https://github.com/pkolaczk/fclones/releases/tag/v0.31.0 --- pkgs/tools/misc/fclones/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/fclones/default.nix b/pkgs/tools/misc/fclones/default.nix index 4a22def16c2c..6db99f6a5810 100644 --- a/pkgs/tools/misc/fclones/default.nix +++ b/pkgs/tools/misc/fclones/default.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage rec { pname = "fclones"; - version = "0.30.0"; + version = "0.31.0"; src = fetchFromGitHub { owner = "pkolaczk"; repo = pname; rev = "v${version}"; - sha256 = "sha256-eFWFXUARXy3VA53VPSZkJdw6ZvI+FtFnCCGHmCAdTto="; + hash = "sha256-VJU6qfcsV1VO/b8LQmIARGhkB8LrGcGsnfu1rUbK3rA="; }; - cargoHash = "sha256-C7DKwEMYdypfItflMOL7rjbAdXDRsXDNoPlc9j6aBRA="; + cargoHash = "sha256-KkJyB6Bdy+gjLHFgLML0rX8OF3/2yXO6XAwUOyvbQIE="; buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk_11_0.frameworks.AppKit @@ -33,7 +33,8 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Efficient Duplicate File Finder and Remover"; homepage = "https://github.com/pkolaczk/fclones"; + changelog = "https://github.com/pkolaczk/fclones/releases/tag/${src.rev}"; license = licenses.mit; - maintainers = with maintainers; [ cyounkins msfjarvis ]; + maintainers = with maintainers; [ cyounkins figsoda msfjarvis ]; }; }