about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-03-20 00:42:27 +0200
committerGitHub <noreply@github.com>2023-03-20 00:42:27 +0200
commit9edcc8960bb120b7bb71039e47ba029bb1f9c6e1 (patch)
treededc12dc0a8ee0336df06242d46e8f94cf76af31 /pkgs
parent27e8a2b86c0f0e7e47a951ea53696a3e166e9cd8 (diff)
parente5c9435ea5d23aa333e35650aa69c23e35139c67 (diff)
Merge pull request #221771 from r-ryantm/auto-update/tagref
tagref: 1.5.0 -> 1.6.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/tagref/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/tagref/default.nix b/pkgs/tools/misc/tagref/default.nix
index 30d00eb74d2ea..aeec026548221 100644
--- a/pkgs/tools/misc/tagref/default.nix
+++ b/pkgs/tools/misc/tagref/default.nix
@@ -1,16 +1,16 @@
 { lib, fetchFromGitHub, rustPlatform }:
 rustPlatform.buildRustPackage rec {
   pname = "tagref";
-  version = "1.5.0";
+  version = "1.6.0";
 
   src = fetchFromGitHub {
     owner = "stepchowfun";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-PZ5ymYXn19PnvimofODh6su9zHdVoa3T7RCWPSO1Z6w=";
+    sha256 = "sha256-tAkRTHstXoGrSDX5h7xOpHHDOdCqdYu3AXoda84ha4g=";
   };
 
-  cargoSha256 = "sha256-6siqfAWFoOomqcRvW+iku28FbyKCHiDzMVIUwWP8hJM=";
+  cargoHash = "sha256-3pD4hocvnfQziGtDvgc4QxnCEHlmsCFK32PI1zEh9z0=";
 
   meta = with lib; {
     description = "Tagref helps you refer to other locations in your codebase.";