about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/meteor/main.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/meteor/main.patch')
-rw-r--r--nixpkgs/pkgs/servers/meteor/main.patch56
1 files changed, 56 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/meteor/main.patch b/nixpkgs/pkgs/servers/meteor/main.patch
new file mode 100644
index 000000000000..3282c91abac8
--- /dev/null
+++ b/nixpkgs/pkgs/servers/meteor/main.patch
@@ -0,0 +1,56 @@
+diff --git a/tools/cli/main.js b/tools/cli/main.js
+index 84f94bc..4fbda17 100644
+--- a/tools/cli/main.js
++++ b/tools/cli/main.js
+@@ -554,6 +554,44 @@
+     }).await());
+   } // Now exec; we're not coming back.
+ 
++  // BEGIN HACK
++  // patch shebang:
++  var fs = require('fs');
++  var path = require("path")
++  var Future = require("fibers/future")
++  var srcOld = fs.readFileSync(executable, 'utf8');
++  srcNew = srcOld.replace(/^#!\/bin\/bash/, '#!/bin/sh');
++  if (srcOld !== srcNew) {
++    fs.writeFileSync(executable, srcNew, 'utf8');
++  }
++  // patch elfs:
++  var dir = path.dirname(executable);
++  var interpreter = "@INTERPRETER@";
++  var rpath = "@RPATH@";
++  function spawnSync(/*...*/) {
++    var args = Array.prototype.slice.call(arguments);
++    var proc = require("child_process").spawn.apply(null, args);
++    var future = new Future();
++    proc.on('close', function (code) {
++      future.return();
++    });
++    return future.wait();
++  }
++  function patchelf(/*...*/) {
++    var pathParts = Array.prototype.slice.call(arguments);
++    var p = path.join.apply(null, [dir, "dev_bundle"].concat(pathParts));
++    spawnSync('@PATCHELF@', [
++      "--set-interpreter",
++      interpreter,
++      "--set-rpath",
++      rpath,
++      p
++    ], {stdio: 'inherit'});
++  }
++  patchelf("bin", "node");
++  patchelf("mongodb", "bin", "mongo");
++  patchelf("mongodb", "bin", "mongod");
++  // END HACK
+
+   require('kexec')(executable, newArgv);
+
+@@ -1485,4 +1523,4 @@
+
+   process.exit(ret);
+ }).run();
+-//# sourceMappingURL=main.js.map
+\ No newline at end of file
++//# sourceMappingURL=main.js.map