Skip to content

Commit

Permalink
Merge pull request NixOS#201709 from helsinki-systems/alias-grub2
Browse files Browse the repository at this point in the history
grub2_full: turn into alias
  • Loading branch information
mweinelt authored Apr 14, 2023
2 parents 731f1a0 + b03e59d commit 6c203ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ mapAliases ({
gr-nacl = gnuradio3_7.pkgs.nacl; # Added 2019-05-27, changed 2020-10-16
gr-osmosdr = gnuradio3_7.pkgs.osmosdr; # Added 2019-05-27, changed 2020-10-16
gr-rds = gnuradio3_7.pkgs.rds; # Added 2019-05-27, changed 2020-10-16
grub2_full = grub2; # Added 2022-11-18
grv = throw "grv has been dropped due to the lack of maintanence from upstream since 2019"; # Added 2022-06-01
gsettings_desktop_schemas = throw "'gsettings_desktop_schemas' has been renamed to/replaced by 'gsettings-desktop-schemas'"; # Converted to throw 2022-02-22
gsl_1 = throw "'gsl_1' has been renamed to/replaced by 'gsl'"; # Added 2022-11-19
Expand Down
8 changes: 3 additions & 5 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8102,9 +8102,7 @@ with pkgs;

trustedGrub-for-HP = pkgsi686Linux.callPackage ../tools/misc/grub/trusted.nix { for_HP_laptop = true; };

grub2 = grub2_full;

grub2_full = callPackage ../tools/misc/grub/2.0x.nix {
grub2 = callPackage ../tools/misc/grub/2.0x.nix {
# update breaks grub2
gnulib = pkgs.gnulib.overrideAttrs (_: rec {
version = "20200223";
Expand All @@ -8124,7 +8122,7 @@ with pkgs;
zfsSupport = false;
};

grub2_xen = grub2_full.override {
grub2_xen = grub2.override {
xenSupport = true;
};

Expand Down Expand Up @@ -34071,7 +34069,7 @@ with pkgs;

timeshift-unwrapped = callPackage ../applications/backup/timeshift/unwrapped.nix { inherit (cinnamon) xapp; };

timeshift = callPackage ../applications/backup/timeshift { grubPackage = grub2_full; };
timeshift = callPackage ../applications/backup/timeshift { grubPackage = grub2; };

timeshift-minimal = callPackage ../applications/backup/timeshift/minimal.nix { };

Expand Down

0 comments on commit 6c203ea

Please sign in to comment.