pythonPackages.pyside: Add missing input libGL
This commit is contained in:
parent
d053944e7b
commit
cd1a02a4ba
|
@ -1,4 +1,4 @@
|
||||||
{ lib, fetchurl, cmake, buildPythonPackage, pysideGeneratorrunner, pysideShiboken, qt4, mesa }:
|
{ lib, fetchurl, cmake, buildPythonPackage, pysideGeneratorrunner, pysideShiboken, qt4, mesa, libGL }:
|
||||||
|
|
||||||
# This derivation provides a Python module and should therefore be called via `python-packages.nix`.
|
# This derivation provides a Python module and should therefore be called via `python-packages.nix`.
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ];
|
nativeBuildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ];
|
||||||
|
|
||||||
buildInputs = [ mesa ];
|
buildInputs = [ mesa libGL ];
|
||||||
|
|
||||||
makeFlags = "QT_PLUGIN_PATH=" + pysideShiboken + "/lib/generatorrunner";
|
makeFlags = "QT_PLUGIN_PATH=" + pysideShiboken + "/lib/generatorrunner";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue