add builder and expression for syslinux. "make install" still barfs, needs patching...

svn path=/nixpkgs/trunk/; revision=3430
This commit is contained in:
Armijn Hemel 2005-07-25 16:58:57 +00:00
parent c886383893
commit 6ea30e97e5
2 changed files with 19 additions and 0 deletions

View File

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

View File

@ -0,0 +1,11 @@
{stdenv, fetchurl, nasm, perl}:
stdenv.mkDerivation {
name = "syslinux-3.09";
builder = ./builder.sh;
src = fetchurl {
url = http://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-3.09.tar.bz2;
md5 = "dd403b15ef18bb0e5d78d3f552f822a5";
};
buildInputs = [nasm perl];
}