2021-11-27 04:19:49 +00:00
|
|
|
{ lib, stdenv, fetchurl, flex, bison, python3, autoreconfHook, gnulib, libtool, bash
|
2021-01-17 03:51:22 +00:00
|
|
|
, gettext, ncurses, libusb-compat-0_1, freetype, qemu, lvm2, unifont, pkg-config
|
2021-04-17 15:27:25 +01:00
|
|
|
, buildPackages
|
2021-04-20 06:29:52 +01:00
|
|
|
, fetchpatch
|
|
|
|
, pkgsBuildBuild
|
2021-02-12 08:57:57 +00:00
|
|
|
, nixosTests
|
2018-05-26 19:44:38 +01:00
|
|
|
, fuse # only needed for grub-mount
|
2020-10-08 10:49:18 +01:00
|
|
|
, runtimeShell
|
2015-02-07 23:03:59 +00:00
|
|
|
, zfs ? null
|
2015-02-08 04:32:33 +00:00
|
|
|
, efiSupport ? false
|
2020-09-15 17:39:51 +01:00
|
|
|
, zfsSupport ? false
|
2017-05-12 07:34:38 +01:00
|
|
|
, xenSupport ? false
|
2020-10-08 10:49:18 +01:00
|
|
|
, kbdcompSupport ? false, ckbcomp
|
2014-08-31 17:18:13 +01:00
|
|
|
}:
|
|
|
|
|
2021-01-15 09:19:50 +00:00
|
|
|
with lib;
|
2014-08-31 09:58:37 +01:00
|
|
|
let
|
2015-01-14 09:30:57 +00:00
|
|
|
pcSystems = {
|
2019-08-13 22:52:01 +01:00
|
|
|
i686-linux.target = "i386";
|
|
|
|
x86_64-linux.target = "i386";
|
2015-01-14 09:30:57 +00:00
|
|
|
};
|
|
|
|
|
2016-12-25 12:54:45 +00:00
|
|
|
efiSystemsBuild = {
|
2019-08-13 22:52:01 +01:00
|
|
|
i686-linux.target = "i386";
|
|
|
|
x86_64-linux.target = "x86_64";
|
2021-05-01 21:59:07 +01:00
|
|
|
armv7l-linux.target = "arm";
|
2019-08-13 22:52:01 +01:00
|
|
|
aarch64-linux.target = "aarch64";
|
2014-08-31 17:18:13 +01:00
|
|
|
};
|
2014-05-04 01:59:47 +01:00
|
|
|
|
2016-12-25 12:54:45 +00:00
|
|
|
# For aarch64, we need to use '--target=aarch64-efi' when building,
|
|
|
|
# but '--target=arm64-efi' when installing. Insanity!
|
|
|
|
efiSystemsInstall = {
|
2019-08-13 22:52:01 +01:00
|
|
|
i686-linux.target = "i386";
|
|
|
|
x86_64-linux.target = "x86_64";
|
2021-05-01 21:59:07 +01:00
|
|
|
armv7l-linux.target = "arm";
|
2019-08-13 22:52:01 +01:00
|
|
|
aarch64-linux.target = "arm64";
|
2016-12-25 12:54:45 +00:00
|
|
|
};
|
|
|
|
|
2018-08-20 20:11:29 +01:00
|
|
|
canEfi = any (system: stdenv.hostPlatform.system == system) (mapAttrsToList (name: _: name) efiSystemsBuild);
|
|
|
|
inPCSystems = any (system: stdenv.hostPlatform.system == system) (mapAttrsToList (name: _: name) pcSystems);
|
2012-09-21 15:36:13 +01:00
|
|
|
|
2021-06-11 11:56:07 +01:00
|
|
|
version = "2.06";
|
2014-09-03 09:06:04 +01:00
|
|
|
|
2014-08-31 17:18:13 +01:00
|
|
|
in (
|
2012-09-21 15:36:13 +01:00
|
|
|
|
2014-08-31 17:18:13 +01:00
|
|
|
assert efiSupport -> canEfi;
|
2015-02-07 23:03:59 +00:00
|
|
|
assert zfsSupport -> zfs != null;
|
2017-05-12 07:34:38 +01:00
|
|
|
assert !(efiSupport && xenSupport);
|
2009-10-13 22:34:54 +01:00
|
|
|
|
2009-10-04 22:39:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "grub";
|
|
|
|
inherit version;
|
2009-10-04 22:39:34 +01:00
|
|
|
|
2021-11-27 02:39:48 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/grub/grub-${version}.tar.xz";
|
|
|
|
sha256 = "sha256-t56kSvkbk9F80/6Ava5u1DdwZ4qaWuGSzOqAPrtlfuE=";
|
2009-10-04 22:39:34 +01:00
|
|
|
};
|
|
|
|
|
2019-02-20 10:18:20 +00:00
|
|
|
patches = [
|
|
|
|
./fix-bash-completion.patch
|
2021-04-20 06:29:52 +01:00
|
|
|
(fetchpatch {
|
|
|
|
name = "Add-hidden-menu-entries.patch";
|
|
|
|
# https://lists.gnu.org/archive/html/grub-devel/2016-04/msg00089.html
|
|
|
|
url = "https://marc.info/?l=grub-devel&m=146193404929072&q=mbox";
|
|
|
|
sha256 = "00wa1q5adiass6i0x7p98vynj9vsz1w0gn1g4dgz89v35mpyw2bi";
|
|
|
|
})
|
2021-11-21 21:01:53 +00:00
|
|
|
|
|
|
|
# Pull upstream patch to fix linkage against binutils-2.36.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "binutils-2.36";
|
|
|
|
url = "https://git.savannah.gnu.org/cgit/grub.git/patch/?id=b98275138bf4fc250a1c362dfd2c8b1cf2421701";
|
|
|
|
sha256 = "001m058bsl2pcb0ii84jfm5ias8zgzabrfy6k2cc9w6w1y51ii82";
|
|
|
|
})
|
2019-02-20 10:18:20 +00:00
|
|
|
];
|
|
|
|
|
2020-10-08 10:49:18 +01:00
|
|
|
postPatch = if kbdcompSupport then ''
|
|
|
|
sed -i util/grub-kbdcomp.in -e 's@\bckbcomp\b@${ckbcomp}/bin/ckbcomp@'
|
|
|
|
'' else ''
|
|
|
|
echo '#! ${runtimeShell}' > util/grub-kbdcomp.in
|
|
|
|
echo 'echo "Compile grub2 with { kbdcompSupport = true; } to enable support for this command."' >> util/grub-kbdcomp.in
|
|
|
|
'';
|
|
|
|
|
2021-04-17 15:27:25 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2021-11-27 02:39:48 +00:00
|
|
|
nativeBuildInputs = [ bison flex python3 pkg-config gettext freetype autoreconfHook ];
|
2021-11-27 04:19:49 +00:00
|
|
|
buildInputs = [ ncurses libusb-compat-0_1 freetype lvm2 fuse libtool bash ]
|
2014-08-31 17:18:13 +01:00
|
|
|
++ optional doCheck qemu
|
2015-02-07 23:03:59 +00:00
|
|
|
++ optional zfsSupport zfs;
|
2010-07-04 22:11:13 +01:00
|
|
|
|
2021-02-12 04:26:26 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "all" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2017-01-05 10:53:43 +00:00
|
|
|
# Work around a bug in the generated flex lexer (upstream flex bug?)
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2010-07-04 22:11:13 +01:00
|
|
|
preConfigure =
|
|
|
|
'' for i in "tests/util/"*.in
|
|
|
|
do
|
2019-01-15 22:41:31 +00:00
|
|
|
sed -i "$i" -e's|/bin/bash|${stdenv.shell}|g'
|
2010-07-04 22:11:13 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# Apparently, the QEMU executable is no longer called
|
|
|
|
# `qemu-system-i386', even on i386.
|
|
|
|
#
|
|
|
|
# In addition, use `-nodefaults' to avoid errors like:
|
|
|
|
#
|
|
|
|
# chardev: opening backend "stdio" failed
|
|
|
|
# qemu: could not open serial device 'stdio': Invalid argument
|
|
|
|
#
|
|
|
|
# See <http://www.mail-archive.com/qemu-devel@nongnu.org/msg22775.html>.
|
|
|
|
sed -i "tests/util/grub-shell.in" \
|
|
|
|
-e's/qemu-system-i386/qemu-system-x86_64 -nodefaults/g'
|
2017-07-21 15:01:23 +01:00
|
|
|
|
|
|
|
unset CPP # setting CPP intereferes with dependency calculation
|
2019-04-16 12:25:05 +01:00
|
|
|
|
|
|
|
patchShebangs .
|
|
|
|
|
|
|
|
substituteInPlace ./configure --replace '/usr/share/fonts/unifont' '${unifont}/share/fonts'
|
2010-07-04 22:11:13 +01:00
|
|
|
'';
|
2009-10-04 22:39:34 +01:00
|
|
|
|
2021-02-12 04:26:26 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-grub-mount" # dep of os-prober
|
2021-04-17 15:27:25 +01:00
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
# grub doesn't do cross-compilation as usual and tries to use unprefixed
|
|
|
|
# tools to target the host. Provide toolchain information explicitly for
|
|
|
|
# cross builds.
|
|
|
|
#
|
|
|
|
# Ref: # https://github.com/buildroot/buildroot/blob/master/boot/grub2/grub2.mk#L108
|
|
|
|
"TARGET_CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"TARGET_NM=${stdenv.cc.targetPrefix}nm"
|
|
|
|
"TARGET_OBJCOPY=${stdenv.cc.targetPrefix}objcopy"
|
|
|
|
"TARGET_RANLIB=${stdenv.cc.targetPrefix}ranlib"
|
|
|
|
"TARGET_STRIP=${stdenv.cc.targetPrefix}strip"
|
|
|
|
] ++ optional zfsSupport "--enable-libzfs"
|
2018-08-20 20:11:29 +01:00
|
|
|
++ optionals efiSupport [ "--with-platform=efi" "--target=${efiSystemsBuild.${stdenv.hostPlatform.system}.target}" "--program-prefix=" ]
|
|
|
|
++ optionals xenSupport [ "--with-platform=xen" "--target=${efiSystemsBuild.${stdenv.hostPlatform.system}.target}"];
|
2011-03-08 23:26:41 +00:00
|
|
|
|
2015-01-14 09:30:57 +00:00
|
|
|
# save target that grub is compiled for
|
|
|
|
grubTarget = if efiSupport
|
2018-08-20 20:11:29 +01:00
|
|
|
then "${efiSystemsInstall.${stdenv.hostPlatform.system}.target}-efi"
|
2015-01-14 09:30:57 +00:00
|
|
|
else if inPCSystems
|
2018-08-20 20:11:29 +01:00
|
|
|
then "${pcSystems.${stdenv.hostPlatform.system}.target}-pc"
|
2015-01-14 09:30:57 +00:00
|
|
|
else "";
|
|
|
|
|
2010-07-20 20:22:02 +01:00
|
|
|
doCheck = false;
|
2011-06-13 21:52:32 +01:00
|
|
|
enableParallelBuilding = true;
|
2009-10-04 22:39:34 +01:00
|
|
|
|
2014-01-17 19:11:46 +00:00
|
|
|
postInstall = ''
|
2015-10-12 21:39:34 +01:00
|
|
|
# Avoid a runtime reference to gcc
|
|
|
|
sed -i $out/lib/grub/*/modinfo.sh -e "/grub_target_cppflags=/ s|'.*'|' '|"
|
2021-11-27 04:19:49 +00:00
|
|
|
# just adding bash to buildInputs wasn't enough to fix the shebang
|
|
|
|
substituteInPlace $out/lib/grub/*/modinfo.sh \
|
|
|
|
--replace ${buildPackages.bash} "/usr/bin/bash"
|
2014-01-17 19:11:46 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-12 08:57:57 +00:00
|
|
|
passthru.tests = {
|
|
|
|
nixos-grub = nixosTests.grub;
|
|
|
|
nixos-install-simple = nixosTests.installer.simple;
|
|
|
|
nixos-install-grub1 = nixosTests.installer.grub1;
|
|
|
|
nixos-install-grub-uefi = nixosTests.installer.simpleUefiGrub;
|
|
|
|
nixos-install-grub-uefi-spec = nixosTests.installer.simpleUefiGrubSpecialisation;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2011-06-13 21:52:32 +01:00
|
|
|
description = "GNU GRUB, the Grand Unified Boot Loader (2.x beta)";
|
2009-10-04 22:39:34 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2010-01-25 22:04:03 +00:00
|
|
|
Briefly, the boot loader is the first software program that runs when a
|
2009-10-04 22:39:34 +01:00
|
|
|
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).
|
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gnu.org/software/grub/";
|
2009-10-04 22:39:34 +01:00
|
|
|
|
2014-08-31 17:18:13 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2009-10-04 22:39:34 +01:00
|
|
|
|
2018-03-26 21:53:38 +01:00
|
|
|
platforms = platforms.gnu ++ platforms.linux;
|
2021-04-26 01:07:35 +01:00
|
|
|
|
|
|
|
maintainers = [ maintainers.samueldr ];
|
2009-10-04 22:39:34 +01:00
|
|
|
};
|
2014-08-31 17:18:13 +01:00
|
|
|
})
|