about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-07-13 09:56:36 -0400
committerfigsoda <figsoda@pm.me>2023-07-13 09:56:36 -0400
commit9154d24a2ef605474ca70b11006f4755d614f4bc (patch)
tree2776552c68c795e4e8b6a7cb263b7f284d579443 /pkgs
parent4959cd51c6731a0e2fe92eaf0c9288f98333e2b5 (diff)
cargo-temp: 0.2.16 -> 0.2.17
Diff: https://github.com/yozhgoor/cargo-temp/compare/v0.2.16...v0.2.17

Changelog: https://github.com/yozhgoor/cargo-temp/releases/tag/v0.2.17
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/cargo-temp/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/cargo-temp/default.nix b/pkgs/development/tools/rust/cargo-temp/default.nix
index 678233b03791a..e19f091be80ae 100644
--- a/pkgs/development/tools/rust/cargo-temp/default.nix
+++ b/pkgs/development/tools/rust/cargo-temp/default.nix
@@ -2,20 +2,21 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-temp";
-  version = "0.2.16";
+  version = "0.2.17";
 
   src = fetchFromGitHub {
     owner = "yozhgoor";
-    repo = pname;
+    repo = "cargo-temp";
     rev = "v${version}";
-    sha256 = "sha256-9rFczpVboJ+TPQzuegFj8RGYBel+4n5iY4B0sruK5wc=";
+    hash = "sha256-nDUtmCbvWK6bdcKvlx3KYMy9w8IOLL6jMWOafX704eQ=";
   };
 
-  cargoSha256 = "sha256-uIgDs7dFJjZgOE/y3T11N3zl8AwRvIyJbIC7wD7Nr7Q=";
+  cargoHash = "sha256-DxeZGQqi681JoCZo0Iq8+TgyF7a8No9Crm4NypUeDDA=";
 
   meta = with lib; {
     description = "A CLI tool that allow you to create a temporary new Rust project using cargo with already installed dependencies";
     homepage = "https://github.com/yozhgoor/cargo-temp";
+    changelog = "https://github.com/yozhgoor/cargo-temp/releases/tag/${src.rev}";
     license = with licenses; [ mit /* or */ asl20 ];
     maintainers = with maintainers; [ figsoda ];
   };