diff options
| author | Jonathan Ringer <jonringer117@gmail.com> | 2021-06-03 13:57:25 -0700 |
|---|---|---|
| committer | Jonathan Ringer <jonringer@users.noreply.github.com> | 2021-06-03 23:01:50 -0700 |
| commit | 4c2e84394c0f372c019e941e95d6fbe21835719b (patch) | |
| tree | ef8c265fc5645a6d52be37eee6a78ad39bea4daa | |
| parent | tdesktop: add optional dependencies (diff) | |
| download | nixpkgs-4c2e84394c0f372c019e941e95d6fbe21835719b.tar.gz | |
linuxPackages.ati_drivers_x11: move to alias set
(cherry picked from commit 095e6fdd126c91f3196bf19cbbc5caf8d6c292a9)
| -rw-r--r-- | pkgs/top-level/all-packages.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0fbbc9b56339..4d9fbbfbed68 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20502,8 +20502,6 @@ in bbswitch = callPackage ../os-specific/linux/bbswitch {}; - ati_drivers_x11 = throw "ati drivers are no longer supported by any kernel >=4.1"; # added 2021-05-18 - chipsec = callPackage ../tools/security/chipsec { inherit kernel; withDriver = true; @@ -20675,6 +20673,9 @@ in zfs = zfsStable; can-isotp = callPackage ../os-specific/linux/can-isotp { }; + } // lib.optionalAttrs (config.allowAliases or false) { + # aliases or removed packages + ati_drivers_x11 = throw "ati drivers are no longer supported by any kernel >=4.1"; # added 2021-05-18 }); # The current default kernel / kernel modules. |
