2009-10-04 22:39:34 +01:00
|
|
|
{ fetchurl, stdenv, bison, ncurses, libusb, freetype }:
|
|
|
|
|
2009-10-13 22:34:54 +01:00
|
|
|
let unifont_bdf = fetchurl {
|
|
|
|
url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz";
|
|
|
|
sha256 = "0s0qfff6n6282q28nwwblp5x295zd6n71kl43xj40vgvdqxv0fxx";
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2009-10-04 22:39:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-11-12 08:58:16 +00:00
|
|
|
name = "grub-1.97.1";
|
2009-10-04 22:39:34 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-10-26 13:58:58 +00:00
|
|
|
url = "ftp://alpha.gnu.org/gnu/grub/${name}.tar.gz";
|
2009-11-12 08:58:16 +00:00
|
|
|
sha256 = "1grpz4jphrhlmjr0ai4vi5rs1xknwfqgb376cq7hlwzblcblbw2i";
|
2009-10-04 22:39:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ bison ncurses libusb freetype ];
|
|
|
|
|
2010-01-07 23:45:29 +00:00
|
|
|
patches =
|
|
|
|
[ # The udev rules for LVM create symlinks in /dev/mapper rathe
|
|
|
|
# than device nodes, causing GRUB to fail to recognize LVM
|
|
|
|
# volumes. See
|
|
|
|
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=550704
|
|
|
|
# This ugly workaround makes `find_root_device' use stat() on
|
|
|
|
# files in /dev/mapper instead of lstat().
|
|
|
|
./device-mapper-symlinks.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch =
|
2009-10-13 22:34:54 +01:00
|
|
|
'' gunzip < "${unifont_bdf}" > "unifont.bdf"
|
|
|
|
sed -i "configure" \
|
|
|
|
-e "s|/usr/src/unifont.bdf|$PWD/unifont.bdf|g"
|
|
|
|
'';
|
|
|
|
|
2009-10-04 22:39:34 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GNU GRUB, the Grand Unified Boot Loader (2.x alpha)";
|
|
|
|
|
|
|
|
longDescription =
|
|
|
|
'' GNU GRUB is a Multiboot boot loader. It was derived from GRUB, GRand
|
|
|
|
Unified Bootloader, which was originally designed and implemented by
|
|
|
|
Erich Stefan Boleyn.
|
|
|
|
|
|
|
|
Briefly, boot loader is the first software program that runs when a
|
|
|
|
computer starts. It is responsible for loading and transferring
|
|
|
|
control to the operating system kernel software (such as the Hurd or
|
|
|
|
the Linux). The kernel, in turn, initializes the rest of the
|
|
|
|
operating system (e.g., GNU).
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/grub/;
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
};
|
|
|
|
}
|