summary refs log tree commit diff
path: root/pkgs/tools/misc/grub
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2021-06-11 12:56:07 +0200
committerajs124 <git@ajs124.de>2021-06-11 12:56:08 +0200
commit963b0a1dbf32b80eb6375973bff48af313c2a7c5 (patch)
tree18b71b2efab1586f4b90c0af57cf366816436d7b /pkgs/tools/misc/grub
parent0b37436b8d608ef3cac5e989290a771063b2d403 (diff)
downloadnixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar.gz
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar.bz2
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar.lz
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar.xz
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.tar.zst
nixpkgs-963b0a1dbf32b80eb6375973bff48af313c2a7c5.zip
grub2: 2.06-rc1 -> 2.06
* GCC 10 support.
* clang 10 support.
* SBAT support.
* LUKS2 support.
* Drop small MBR gap support.
* Xen Security Modules (XSM/FLASK) support.
* The lockdown mechanism similar to the Linux kernel one.
* Disable the os-prober by default.
* Many backports of GRUB distros specific patches.
* BootHole and BootHole2 fixes.
* XFS bigtime support.
* ...and tons of other fixes and cleanups...
Diffstat (limited to 'pkgs/tools/misc/grub')
-rw-r--r--pkgs/tools/misc/grub/2.0x.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix
index fcf29beb188..d9c4ceeca2c 100644
--- a/pkgs/tools/misc/grub/2.0x.nix
+++ b/pkgs/tools/misc/grub/2.0x.nix
@@ -39,7 +39,7 @@ let
   canEfi = any (system: stdenv.hostPlatform.system == system) (mapAttrsToList (name: _: name) efiSystemsBuild);
   inPCSystems = any (system: stdenv.hostPlatform.system == system) (mapAttrsToList (name: _: name) pcSystems);
 
-  version = "2.06-rc1";
+  version = "2.06";
 
 in (
 
@@ -54,7 +54,7 @@ stdenv.mkDerivation rec {
   src = fetchgit {
     url = "git://git.savannah.gnu.org/grub.git";
     rev = "${pname}-${version}";
-    sha256 = "1ngc960g4w91rg13l724v6nlj6fq1adxp6is2mrq4bnp7sm9mysa";
+    sha256 = "1vkxr6b4p7h259vayjw8bfgqj57x68byy939y4bmyaz6g7fgrv0f";
   };
 
   patches = [