summary refs log tree commit diff
path: root/pkgs/tools/misc/shebangfix/default.nix
blob: f5ed86e99f7d1fc081dbdcf98e276c96118858d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args: with args;
stdenv.mkDerivation {
  name = "shebangfix-0.0";

  buildInputs = [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 "; };
}