about summary refs log tree commit diff
path: root/pkgs/development/tools/rust/rust-script
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-04-05 17:20:22 -0400
committerfigsoda <figsoda@pm.me>2023-04-05 17:21:17 -0400
commitc844e3d3c1a46915d09be9cfb6fe02f0707d807c (patch)
tree6d617e210c1d802555feea0ed75a1da65a7406bd /pkgs/development/tools/rust/rust-script
parent38263d02cf3a22e011e137b8f67cdf8419f28015 (diff)
rust-script: 0.23.0 -> 0.24.0
Diff: https://github.com/fornwall/rust-script/compare/0.23.0...0.24.0

Changelog: https://github.com/fornwall/rust-script/releases/tag/0.24.0
Diffstat (limited to 'pkgs/development/tools/rust/rust-script')
-rw-r--r--pkgs/development/tools/rust/rust-script/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/rust-script/default.nix b/pkgs/development/tools/rust/rust-script/default.nix
index 09d51fa4812b7..e5304dcf4d075 100644
--- a/pkgs/development/tools/rust/rust-script/default.nix
+++ b/pkgs/development/tools/rust/rust-script/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rust-script";
-  version = "0.23.0";
+  version = "0.24.0";
 
   src = fetchFromGitHub {
     owner = "fornwall";
     repo = pname;
     rev = version;
-    sha256 = "sha256-WfrIl3a4lQPZWYx1+cHmvlAKD5CVSRaOMoTpHjcO+I8=";
+    sha256 = "sha256-l6YGVfI9QSa+6x8M7cJ2rnFyzUbpuvMVJRXRhestLHs=";
   };
 
-  cargoSha256 = "sha256-FQfSD4QwIDvwaGFRmunO3Zp5R2dKUCpucCvLQsXqsRo=";
+  cargoSha256 = "sha256-HgdAvBDsMzC19nckLI5f8XumJMH72H9YRIY3sjtmRco=";
 
   # tests require network access
   doCheck = false;
@@ -19,6 +19,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "Run Rust files and expressions as scripts without any setup or compilation step";
     homepage = "https://rust-script.org";
+    changelog = "https://github.com/fornwall/rust-script/releases/tag/${version}";
     license = with licenses; [ mit /* or */ asl20 ];
     maintainers = with maintainers; [ figsoda ];
   };