* Fix some URLs.

svn path=/nixpkgs/trunk/; revision=6714
This commit is contained in:
Eelco Dolstra
2006-10-12 15:09:27 +00:00
parent ad897a7c96
commit 5782390a5d
7 changed files with 15 additions and 44 deletions
+12 -1
View File
@@ -1 +1,12 @@
import ./syslinux-3.20.nix
{stdenv, fetchurl, nasm, perl}:
stdenv.mkDerivation {
name = "syslinux-3.20";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/syslinux-3.20.tar.bz2;
md5 = "0701e0de1de6d31bdd889384b041e5b7";
};
buildInputs = [nasm perl];
patches = [./syslinux-3.20-installpath.patch];
}
@@ -1,12 +0,0 @@
{stdenv, fetchurl, nasm, perl}:
stdenv.mkDerivation {
name = "syslinux-3.11";
builder = ./builder.sh;
src = fetchurl {
url = http://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-3.11.tar.bz2;
md5 = "513ff71287a4397d507879a1a836c2e8";
};
buildInputs = [nasm perl];
patches = [./syslinux-installpath.patch];
}
@@ -1,12 +0,0 @@
{stdenv, fetchurl, nasm, perl}:
stdenv.mkDerivation {
name = "syslinux-3.20";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/syslinux-3.20.tar.bz2;
md5 = "0701e0de1de6d31bdd889384b041e5b7";
};
buildInputs = [nasm perl];
patches = [./syslinux-3.20-installpath.patch];
}