about summary refs log tree commit diff
path: root/pkgs/development/ruby-modules
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-04-05 12:01:10 +0000
committerGitHub <noreply@github.com>2023-04-05 12:01:10 +0000
commitae5b53747bc06f479f1cf8164c7cadb1ee291d92 (patch)
tree817bfef3e5d39da4dbe1f76653de557a41d205f9 /pkgs/development/ruby-modules
parentf011a8c9059c9b65fcf9635e9edf0246ebb40256 (diff)
parent477665842da00c58654a54b1bfbb4a90044356bd (diff)
Merge master into staging-next
Diffstat (limited to 'pkgs/development/ruby-modules')
-rw-r--r--pkgs/development/ruby-modules/bundix/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/ruby-modules/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix
index 94c47f4e566d3..36e453b9f7e61 100644
--- a/pkgs/development/ruby-modules/bundix/default.nix
+++ b/pkgs/development/ruby-modules/bundix/default.nix
@@ -1,6 +1,5 @@
 { buildRubyGem
 , fetchFromGitHub
-, fetchpatch
 , makeWrapper
 , lib
 , bundler
@@ -13,23 +12,15 @@ buildRubyGem rec {
 
   name = "${gemName}-${version}";
   gemName = "bundix";
-  version = "2.5.1";
+  version = "2.5.2";
 
   src = fetchFromGitHub {
     owner = "nix-community";
     repo = "bundix";
     rev = version;
-    sha256 = "sha256-iMp6Yj7TSWDqge3Lw855/igOWdTIuFH1LGeIN/cpq7U=";
+    sha256 = "sha256-QnNdseCSwQYhO/ybzWsflMEk68TMgPU3HqXJ7av3SHE=";
   };
 
-  patches = [
-    # https://github.com/nix-community/bundix/pull/80
-    (fetchpatch {
-      url = "https://github.com/nix-community/bundix/commit/3d7820efdd77281234182a9b813c2895ef49ae1f.patch";
-      hash = "sha256-ShluCWfRQxR+vkXqa7Fh7+WHKf6vAsa9/DVeXjpAXLk=";
-    })
-  ];
-
   buildInputs = [ ruby bundler ];
   nativeBuildInputs = [ makeWrapper ];