about summary refs log tree commit diff
path: root/pkgs/tools/misc/shebangfix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/shebangfix/default.nix')
-rw-r--r--pkgs/tools/misc/shebangfix/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/tools/misc/shebangfix/default.nix b/pkgs/tools/misc/shebangfix/default.nix
new file mode 100644
index 000000000000..94ecc1e00f7b
--- /dev/null
+++ b/pkgs/tools/misc/shebangfix/default.nix
@@ -0,0 +1,20 @@
+args:
+args.stdenv.mkDerivation {
+  name = "shebangfix-0.0";
+
+  buildInputs = [args.perl];
+
+  file = ./shebangfix.pl;
+
+  phases = "buildPhase";
+
+  buildPhase = "
+    ensureDir \$out/bin
+    s=\$out/bin/shebangfix
+    cp \$file \$s
+    chmod +x \$s
+    perl \$s \$s
+  ";
+
+  meta = { description = "replaces the #!executable with $#!correctpath/executable "; };
+}