use generic builder instead

svn path=/nixpkgs/trunk/; revision=3479
This commit is contained in:
Armijn Hemel 2005-07-31 11:24:26 +00:00
parent b31122acd2
commit 6fab88924c
2 changed files with 8 additions and 5 deletions

View File

@ -1,8 +1,10 @@
buildinputs=""
. $stdenv/setup
tar xvfj $src
cd syslinux-3.09
make
mkdir $out
make BASEDIR=$out install
#tar xvfj $src
#cd syslinux-3.09
#make
#mkdir $out
#make BASEDIR=$out install
genericBuild

View File

@ -8,4 +8,5 @@ stdenv.mkDerivation {
md5 = "dd403b15ef18bb0e5d78d3f552f822a5";
};
buildInputs = [nasm perl];
patches = [./syslinux-installpath.patch];
}