nvidia_x11: 415.27 -> 418.43
This commit is contained in:
parent
9629324536
commit
48e66e5184
2 changed files with 9 additions and 7 deletions
|
@ -74,7 +74,9 @@ installPhase() {
|
|||
if [ -n "$bin" ]; then
|
||||
# Install the X drivers.
|
||||
mkdir -p $bin/lib/xorg/modules
|
||||
cp -p libnvidia-wfb.* $bin/lib/xorg/modules/
|
||||
if [ -f libnvidia-wfb.so ]; then
|
||||
cp -p libnvidia-wfb.* $bin/lib/xorg/modules/
|
||||
fi
|
||||
mkdir -p $bin/lib/xorg/modules/drivers
|
||||
cp -p nvidia_drv.so $bin/lib/xorg/modules/drivers
|
||||
mkdir -p $bin/lib/xorg/modules/extensions
|
||||
|
|
|
@ -16,16 +16,16 @@ let
|
|||
in
|
||||
rec {
|
||||
# Policy: use the highest stable version as the default (on our master).
|
||||
stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_415 else legacy_390;
|
||||
stable = if stdenv.hostPlatform.system == "x86_64-linux" then stable_418 else legacy_390;
|
||||
|
||||
# No active beta right now
|
||||
beta = stable;
|
||||
|
||||
stable_415 = generic {
|
||||
version = "415.27";
|
||||
sha256_64bit = "12ylf1h1wpgkd0g7r30c33hhhialn315k5sbxyzks0rm42k7cay8";
|
||||
settingsSha256 = "0m8hfxb6fhanqlkkk4ayn1blgdsvnn0ipxdl19ifdl200ln6j053";
|
||||
persistencedSha256 = "0i6ik6xv6rnwcd6vg5xrxcd9g7nzca3vkiy2srbv0simw86nwgdz";
|
||||
stable_418 = generic {
|
||||
version = "418.43";
|
||||
sha256_64bit = "0zrjd8wfc8cknfwiyy3llsnn1mympfxxszz7gzakncp3vs1jrghq";
|
||||
settingsSha256 = "1rzxxn7nrhwndl2lgjakxi0rblfkqjyl1n70fl7rcs6g75mi1qsq";
|
||||
persistencedSha256 = "14m4x5r0yc23sg4xx523ccfpxsr6dgm2n3xy9zdibl1cpzz50ikc";
|
||||
};
|
||||
|
||||
# Last one supporting x86
|
||||
|
|
Loading…
Reference in a new issue