summary refs log tree commit diff
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-06-04 16:22:03 -0400
committerfigsoda <figsoda@pm.me>2023-06-04 16:22:52 -0400
commit37b721206e8cfaa635d2415f2b91056e55577acd (patch)
treebab55b3a453c84b1102cefb423430c6b3d3b78f4
parent882772927e63d801322f570b8ddf1860c7a4fb61 (diff)
downloadnixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar.gz
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar.bz2
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar.lz
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar.xz
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.tar.zst
nixpkgs-37b721206e8cfaa635d2415f2b91056e55577acd.zip
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
-rw-r--r--pkgs/tools/misc/fclones/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/fclones/default.nix b/pkgs/tools/misc/fclones/default.nix
index 4a22def16c2..6db99f6a581 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 ];
   };
 }