2005-07-18 10:18:07 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2007-01-22 19:57:12 +00:00
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
abort "Grub doesn't build on x86_64-linux. You should use the build for i686-linux instead."
|
|
|
|
else
|
|
|
|
|
2005-07-18 10:18:07 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "grub-0.97";
|
|
|
|
src = fetchurl {
|
2006-01-30 16:04:03 +00:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/grub-0.97.tar.gz;
|
2005-07-18 10:18:07 +01:00
|
|
|
md5 = "cd3f3eb54446be6003156158d51f4884";
|
|
|
|
};
|
|
|
|
}
|