about summary refs log tree commit diff
path: root/pkgs/tools/misc/nomino
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-08-27 10:13:18 -0400
committerfigsoda <figsoda@pm.me>2023-08-27 10:13:18 -0400
commitaf9e1b2fa6143a27b0e09ac3533f559f10db0f64 (patch)
tree165263e58d08390796906e2b28aee6c82cd424ed /pkgs/tools/misc/nomino
parent3ba7bebb0e27379eeeaef0a5c871bc560684e966 (diff)
nomino: 1.3.1 -> 1.3.2
Diff: https://github.com/yaa110/nomino/compare/1.3.1...1.3.2

Changelog: https://github.com/yaa110/nomino/releases/tag/1.3.2
Diffstat (limited to 'pkgs/tools/misc/nomino')
-rw-r--r--pkgs/tools/misc/nomino/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/nomino/default.nix b/pkgs/tools/misc/nomino/default.nix
index ce9be1fd58784..1eb472ee8fa17 100644
--- a/pkgs/tools/misc/nomino/default.nix
+++ b/pkgs/tools/misc/nomino/default.nix
@@ -1,21 +1,22 @@
-{ fetchFromGitHub, lib, rustPlatform }:
+{ lib, rustPlatform, fetchFromGitHub }:
 
 rustPlatform.buildRustPackage rec {
   pname = "nomino";
-  version = "1.3.1";
+  version = "1.3.2";
 
   src = fetchFromGitHub {
     owner = "yaa110";
     repo = pname;
     rev = version;
-    sha256 = "sha256-XUxoHmZePn/VVlu2KctC+TbmCwp+tYEYg5EYXI8ZB7o=";
+    hash = "sha256-pzAL7e72sO94qLEwsH/5RuiuzvnsSelIq47jdU8INDw=";
   };
 
-  cargoSha256 = "sha256-RyEqDC2gRacd27uvNf3XOATZdeVg70vBEdPURNuf38w=";
+  cargoHash = "sha256-gDOZ3nD7pTIRNXG3S+qTkl+HInBcAErvwPqa0NZWxY4=";
 
   meta = with lib; {
     description = "Batch rename utility for developers";
     homepage = "https://github.com/yaa110/nomino";
+    changelog = "https://github.com/yaa110/nomino/releases/tag/${src.rev}";
     license = with licenses; [ mit /* or */ asl20 ];
     maintainers = with maintainers; [ figsoda ];
   };