mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #48661 from baracoder/nvidia-update
nvidia_x11: 390.87 -> 410.66
This commit is contained in:
commit
6f00276171
1 changed files with 14 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, callPackage, fetchurl }:
|
||||
{ lib, callPackage, fetchurl, stdenv }:
|
||||
|
||||
let
|
||||
generic = args: callPackage (import ./generic.nix args) { };
|
||||
|
@ -16,7 +16,17 @@ let
|
|||
in
|
||||
rec {
|
||||
# Policy: use the highest stable version as the default (on our master).
|
||||
stable = generic {
|
||||
stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_410 else stable_390;
|
||||
|
||||
stable_410 = generic {
|
||||
version = "410.66";
|
||||
sha256_64bit = "05xjzvj0fgmkpz36dbd7hy2vzl6xxiflzx7kml3k7ad9gy2svdlg";
|
||||
settingsSha256 = "1nsxz1byshgjs3c03lyx6ya36dp0f2vg2l0d9pkh1i6cpzkp53kz";
|
||||
persistencedSha256 = "0m4wdpb8w4y323d8py105p9hizwmf2ai8frkl7h77sn3ski17zw6";
|
||||
};
|
||||
|
||||
# Last one supporting x86
|
||||
stable_390 = generic {
|
||||
version = "390.87";
|
||||
sha256_32bit = "0rlr1f4lnpb8c4qz4w5r8xw5gdy9bzz26qww45qyl1qav3wwaaaw";
|
||||
sha256_64bit = "07k1kq8lkgbvjyr2dnbxcz6nppcwpq17wf925w8kfq78345hla9q";
|
||||
|
@ -26,12 +36,8 @@ rec {
|
|||
patches = lib.optional (kernel.meta.branch == "4.19") ./drm_mode_connector.patch;
|
||||
};
|
||||
|
||||
beta = generic {
|
||||
version = "410.57";
|
||||
sha256_64bit = "08534rv3wcmzslbwq11kd3s7cxm72p48dia6540c0586xwgjwg2w";
|
||||
settingsSha256 = "1phhhzlc8n3rqdhrn757mnlqmsp616d079a6h1qjpa6jba9z9915";
|
||||
persistencedSha256 = "1z7c1ff0y486yp9i5w0siwh9dnprml22x2avarbjfgqwm4f652lw";
|
||||
};
|
||||
# No active beta right now
|
||||
beta = stable;
|
||||
|
||||
legacy_340 = generic {
|
||||
version = "340.104";
|
||||
|
|
Loading…
Reference in a new issue