summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby
diff options
context:
space:
mode:
authorHoang Xuan Phu <phuhimself@phunehehe.net>2016-02-03 11:25:07 +0700
committerHoang Xuan Phu <phuhimself@phunehehe.net>2016-02-03 11:26:40 +0700
commitcb7b811c438dbebad0cbf65b8d2f7c27a5b330a7 (patch)
tree50d46675421a015f003c137941290db5484c7063 /pkgs/development/interpreters/ruby
parent22d9e4ef26eda11799720e8f3142ca011a8d79d2 (diff)
downloadnixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar.gz
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar.bz2
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar.lz
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar.xz
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.tar.zst
nixlib-cb7b811c438dbebad0cbf65b8d2f7c27a5b330a7.zip
remove unused file bundler-head.nix (bundler_HEAD is now just an alias for bundler)
Diffstat (limited to 'pkgs/development/interpreters/ruby')
-rw-r--r--pkgs/development/interpreters/ruby/bundler-head.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/pkgs/development/interpreters/ruby/bundler-head.nix b/pkgs/development/interpreters/ruby/bundler-head.nix
deleted file mode 100644
index e31f63dccf06..000000000000
--- a/pkgs/development/interpreters/ruby/bundler-head.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ buildRubyGem, coreutils, fetchgit }:
-
-buildRubyGem {
-  name = "bundler-2015-01-11";
-  src = fetchgit {
-    url = "https://github.com/bundler/bundler.git";
-    rev = "a2343c9eabf5403d8ffcbca4dea33d18a60fc157";
-    sha256 = "06qsai4ac3i2xlr7nbc4anh4cy6jd9jjf3rpj254g9gwshqv0qgr";
-    leaveDotGit = true;
-  };
-  dontPatchShebangs = true;
-  postInstall = ''
-    find $out -type f -perm -0100 | while read f; do
-      substituteInPlace $f \
-         --replace "/usr/bin/env" "${coreutils}/bin/env"
-    done
-  '';
-}