2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, perl }:
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
stdenv.mkDerivation {
|
2007-11-14 19:07:38 +00:00
|
|
|
name = "shebangfix-0.0";
|
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
buildInputs = [perl];
|
2007-11-14 19:07:38 +00:00
|
|
|
|
|
|
|
file = ./shebangfix.pl;
|
|
|
|
|
|
|
|
phases = "buildPhase";
|
|
|
|
|
2008-02-04 12:07:27 +00:00
|
|
|
buildPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2008-02-04 12:07:27 +00:00
|
|
|
s=$out/bin/shebangfix
|
|
|
|
cp $file $s
|
|
|
|
chmod +wx $s
|
|
|
|
ls -l $s
|
|
|
|
perl $s $s
|
|
|
|
'';
|
2007-11-14 19:07:38 +00:00
|
|
|
|
|
|
|
meta = { description = "replaces the #!executable with $#!correctpath/executable "; };
|
|
|
|
}
|