mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 02:55:39 +00:00
virtualgl*: Fix missing library
FLTK doesn't dictate linking against libXi, so virtualgl should declare that its own buildInputs.
This commit is contained in:
parent
e12985318c
commit
6425fa659b
@ -1,5 +1,5 @@
|
||||
{ lib, stdenv, fetchurl, cmake
|
||||
, libGL, libGLU, libX11, libXv, libXtst, libjpeg_turbo, fltk
|
||||
, libGL, libGLU, libXv, libXtst, libXi, libjpeg_turbo, fltk
|
||||
, xorg
|
||||
, opencl-headers, opencl-clhpp, ocl-icd
|
||||
}:
|
||||
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
buildInputs = [ libjpeg_turbo libGL libGLU fltk
|
||||
libX11 libXv libXtst xorg.xcbutilkeysyms
|
||||
libXv libXtst libXi xorg.xcbutilkeysyms
|
||||
opencl-headers opencl-clhpp ocl-icd
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user