about summary refs log tree commit diff
path: root/pkgs/development/tools/rye
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-02-03 17:31:14 +0100
committerGaetan Lepage <gaetan@glepage.com>2024-02-03 17:31:14 +0100
commit3d01a2c66c2da52b8f4277cc09473e057b763d17 (patch)
treec547772ff9c20206545982a0efb9c7e30a642a86 /pkgs/development/tools/rye
parent737bde6fb2ddd8ecfea8b89b5a17d1954620ce35 (diff)
rye: 0.20.0 -> 0.21.0
Diff: https://github.com/mitsuhiko/rye/compare/refs/tags/0.20.0...0.21.0

Changelog: https://github.com/mitsuhiko/rye/releases/tag/0.21.0
Diffstat (limited to 'pkgs/development/tools/rye')
-rw-r--r--pkgs/development/tools/rye/Cargo.lock2
-rw-r--r--pkgs/development/tools/rye/default.nix13
2 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/development/tools/rye/Cargo.lock b/pkgs/development/tools/rye/Cargo.lock
index ee100f1500913..f6e5b5d019661 100644
--- a/pkgs/development/tools/rye/Cargo.lock
+++ b/pkgs/development/tools/rye/Cargo.lock
@@ -1786,7 +1786,7 @@ dependencies = [
 
 [[package]]
 name = "rye"
-version = "0.20.0"
+version = "0.21.0"
 dependencies = [
  "age",
  "anyhow",
diff --git a/pkgs/development/tools/rye/default.nix b/pkgs/development/tools/rye/default.nix
index 79d77675975b2..6ed67fd5bdfff 100644
--- a/pkgs/development/tools/rye/default.nix
+++ b/pkgs/development/tools/rye/default.nix
@@ -1,7 +1,6 @@
 { lib
 , rustPlatform
 , fetchFromGitHub
-, fetchpatch
 , installShellFiles
 , pkg-config
 , openssl
@@ -13,23 +12,15 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rye";
-  version = "0.20.0";
+  version = "0.21.0";
 
   src = fetchFromGitHub {
     owner = "mitsuhiko";
     repo = "rye";
     rev = "refs/tags/${version}";
-    hash = "sha256-btgX1nDBJeZjwv2pBi4OEwzFf7xpRDaq63JTrSkF+BM=";
+    hash = "sha256-H41gJNNrelPyCP1EYXIjwEc+1v2lnw9xmm0J+12lENA=";
   };
 
-  patches = [
-    (fetchpatch {  # Fixes the build: https://github.com/mitsuhiko/rye/issues/575
-      name = "bump-monotrail";
-      url = "https://github.com/mitsuhiko/rye/commit/675255c2c12176fff8988b6c3896dcd10766b681.patch";
-      hash = "sha256-kBqjTHW7oT6DY17bdReoRfV9E75QtYqBlOv4FHbbexw=";
-    })
-  ];
-
   cargoLock = {
     lockFile = ./Cargo.lock;
     outputHashes = {