0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

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="" buildinputs=""
. $stdenv/setup . $stdenv/setup
tar xvfj $src #tar xvfj $src
cd syslinux-3.09 #cd syslinux-3.09
make #make
mkdir $out #mkdir $out
make BASEDIR=$out install #make BASEDIR=$out install
genericBuild

View file

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