Skip to content

Commit

Permalink
Merge pull request #61140 from LumiGuide/1903-nvidiastable
Browse files Browse the repository at this point in the history
nvidia_x11: 415.27 -> 418.43 - backport from master
  • Loading branch information
veprbl committed May 11, 2019
2 parents 6f45d8d + 063c339 commit c2570ef
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/nvidia-x11/builder.sh
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions pkgs/os-specific/linux/nvidia-x11/default.nix
Expand Up @@ -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.56";
sha256_64bit = "1cg7927g5ml1rwgpydlrjzr55gza5dfkqkch29bbarpzd7dh0mf4";
settingsSha256 = "1dai4dh6g3arkgicbjwhfr948i1xc13a7s0xcgalan0pn5zd56z6";
persistencedSha256 = "1r13jjpqg9ri5mw633k01dq2ivblc8nrbsnh7709v1xibaydwnhn";
};

# Last one supporting x86
Expand Down

0 comments on commit c2570ef

Please sign in to comment.