treewide: transition from mesa_noglu to libGL

This commit is contained in:
Alexander V. Nikolaev
2018-02-24 17:03:46 +02:00
parent 8da9b485ec
commit 8f2a22935c
50 changed files with 107 additions and 107 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
{ stdenv, buildEnv, lib, fetchurl, mesa_noglu, ioquake3, makeWrapper }:
{ stdenv, buildEnv, lib, fetchurl, libGL, ioquake3, makeWrapper }:
{ paks, name ? (stdenv.lib.head paks).name, description ? "" }:
let
libPath = lib.makeLibraryPath [ mesa_noglu stdenv.cc.cc ];
libPath = lib.makeLibraryPath [ libGL stdenv.cc.cc ];
env = buildEnv {
name = "quake3-env";
paths = [ ioquake3 ] ++ paks;