about summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-09-04 16:42:20 -0400
committerShea Levy <shea@shealevy.com>2013-09-04 16:42:20 -0400
commitaed1cd3c1777f039de94cb2286474886a49924a1 (patch)
tree9ca39addc946e8d607a46cbd948dd2a0a08056ce /pkgs/development/interpreters/ruby
parent1642e3a6d79ee9c35f56d573cac1c682c0176fc4 (diff)
downloadnixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar.gz
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar.bz2
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar.lz
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar.xz
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.tar.zst
nixlib-aed1cd3c1777f039de94cb2286474886a49924a1.zip
Add patch to fix GET Bucket requests to fake-s3
See https://github.com/jubos/fake-s3/pull/37

Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs/development/interpreters/ruby')
-rw-r--r--pkgs/development/interpreters/ruby/patches.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/ruby/patches.nix b/pkgs/development/interpreters/ruby/patches.nix
index 2ac65dbb7e10..7c80cdfe0653 100644
--- a/pkgs/development/interpreters/ruby/patches.nix
+++ b/pkgs/development/interpreters/ruby/patches.nix
@@ -117,4 +117,11 @@ in
   };
   
   pry = { gemFlags = "--no-ri --no-rdoc"; };
+
+  fakes3 = {
+    postInstall = ''
+      cd $out/${ruby.gemPath}/gems/*
+      patch -Np1 -i ${../../ruby-modules/fake-s3-list-bucket.patch}
+    '';
+  };
 }