summary refs log tree commit diff
path: root/pkgs/development/ruby-modules
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2021-04-02 11:54:55 +0200
committerGitHub <noreply@github.com>2021-04-02 11:54:55 +0200
commit6ddf9649aec658417c77309591ebeb938be76a97 (patch)
tree2c0940e2f543842c5c62df248fe353fc77628105 /pkgs/development/ruby-modules
parentcf8da7eabda0336a3be0329eb95bbe1feb24df52 (diff)
parenteaba4b04af54414f16c206f4dee72887c99d0a9e (diff)
downloadnixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar.gz
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar.bz2
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar.lz
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar.xz
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.tar.zst
nixpkgs-6ddf9649aec658417c77309591ebeb938be76a97.zip
Merge pull request #118219 from SuperSandro2000/bundix
bundix: 2.5.0 -> 2.5.1
Diffstat (limited to 'pkgs/development/ruby-modules')
-rw-r--r--pkgs/development/ruby-modules/bundix/default.nix15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgs/development/ruby-modules/bundix/default.nix b/pkgs/development/ruby-modules/bundix/default.nix
index f3ac42b9406..58af7b7c8d6 100644
--- a/pkgs/development/ruby-modules/bundix/default.nix
+++ b/pkgs/development/ruby-modules/bundix/default.nix
@@ -1,29 +1,20 @@
 { buildRubyGem, fetchFromGitHub, makeWrapper, lib, bundler, nix,
-  nix-prefetch-git, fetchpatch }:
+  nix-prefetch-git }:
 
 buildRubyGem rec {
   inherit (bundler) ruby;
 
   name = "${gemName}-${version}";
   gemName = "bundix";
-  version = "2.5.0";
+  version = "2.5.1";
 
   src = fetchFromGitHub {
     owner = "nix-community";
     repo = "bundix";
     rev = version;
-    sha256 = "05y8sy6v9km1dwvpjzkjxpfzv95g6yzac1b5blac2f1r2kw167p8";
+    sha256 = "sha256-iMp6Yj7TSWDqge3Lw855/igOWdTIuFH1LGeIN/cpq7U=";
   };
 
-  patches = [
-    # write trailing newline to gemset.nix
-    # https://github.com/nix-community/bundix/pull/78
-    (fetchpatch {
-      url = "https://github.com/nix-community/bundix/commit/02ca7a6c656a1e5e5465ad78b31040d82ae1a7e6.patch";
-      sha256 = "18r30icv7r79dlmxz1d1qlk5b6c7r257x23sqav55yhfail9hqrb";
-    })
-  ];
-
   buildInputs = [ ruby bundler ];
   nativeBuildInputs = [ makeWrapper ];