4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
986 B
Nix
36 lines
986 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook, texinfo, buggyBiosCDSupport ? true }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "grub-0.97-73";
|
|
|
|
src = fetchurl {
|
|
url = "https://alpha.gnu.org/gnu/grub/grub-0.97.tar.gz";
|
|
sha256 = "02r6b52r0nsp6ryqfiqchnl7r1d9smm80sqx24494gmx5p8ia7af";
|
|
};
|
|
|
|
patches = [
|
|
# Properly handle the case of symlinks such as
|
|
# /dev/disk/by-label/bla. The symlink resolution code in
|
|
# grub-install isn't smart enough.
|
|
./symlink.patch
|
|
]
|
|
++ (stdenv.lib.optional buggyBiosCDSupport ./buggybios.patch)
|
|
++ map fetchurl (import ./grub1.patches.nix)
|
|
;
|
|
|
|
# autoreconfHook required for the splashimage patch.
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ texinfo ];
|
|
|
|
hardeningDisable = [ "format" "stackprotector" ];
|
|
|
|
passthru.grubTarget = "";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.gnu.org/software/grub";
|
|
description = "GRand Unified Bootloader";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|