coin3d: Don't use libGLU_combined

This commit is contained in:
adisbladis 2019-11-07 16:32:59 +00:00
parent 5d24b1e97a
commit 52997f11ca
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7

View File

@ -1,4 +1,4 @@
{ fetchFromBitbucket, stdenv, boost, cmake, libGLU_combined }:
{ fetchFromBitbucket, stdenv, boost, cmake, libGL, libGLU }:
stdenv.mkDerivation {
pname = "coin";
@ -16,7 +16,7 @@ stdenv.mkDerivation {
'';
nativeBuildInputs = [ cmake ];
buildInputs = [ boost libGLU_combined ];
buildInputs = [ boost libGL libGLU ];
meta = {
homepage = "https://bitbucket.org/Coin3D/coin/wiki/Home";