12ae5363ea
* Make builders unexecutable by removing the hash-bang line and execute permission. * Convert calls to `derivation' to `mkDerivation'. * Remove `system' and `stdenv' attributes from calls to `mkDerivation'. These transformations were all done automatically, so it is quite possible I broke stuff. * Put the `mkDerivation' function in stdenv/generic. svn path=/nixpkgs/trunk/; revision=874
20 lines
423 B
Bash
20 lines
423 B
Bash
. $stdenv/setup || exit 1
|
|
|
|
tar xvfj $src || exit 1
|
|
|
|
mkdir -p $out
|
|
mv apache-ant-1.6.0/* $out || exit 1
|
|
|
|
rm -rf $out/docs
|
|
rm $out/*
|
|
|
|
confpath=$out/etc/nixpaths.conf || exit 1
|
|
sed "s^.etc.ant.conf^$confpath^g" $out/bin/ant > $out/bin/ant_temp || exit 1
|
|
mv $out/bin/ant_temp $out/bin/ant || exit 1
|
|
chmod u+xrw $out/bin/ant || exit 1
|
|
chmod u+x $out/bin/* || exit 1
|
|
echo "
|
|
JAVA_HOME=$j2sdk
|
|
ANT_HOME=$out
|
|
" > $confpath || exit 1
|