treewide: Get rid of libGLU_combined
This commit is contained in:
@@ -259,7 +259,7 @@ self: super: builtins.intersectAttrs super {
|
||||
wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK30; };
|
||||
|
||||
# Test suite wants to connect to $DISPLAY.
|
||||
hsqml = dontCheck (addExtraLibrary (super.hsqml.override { qt5 = pkgs.qt5Full; }) pkgs.libGLU_combined);
|
||||
hsqml = dontCheck (addExtraLibraries (super.hsqml.override { qt5 = pkgs.qt5Full; }) [pkgs.libGLU pkgs.libGL]);
|
||||
|
||||
# Tests attempt to use NPM to install from the network into
|
||||
# /homeless-shelter. Disabled.
|
||||
|
||||
@@ -85987,7 +85987,7 @@ self: {
|
||||
|
||||
"fltkhs" = callPackage
|
||||
({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath
|
||||
, fltk14, libGLU_combined, mtl, OpenGLRaw, parsec, pkgconfig, text
|
||||
, fltk14, libGLU, libGL, mtl, OpenGLRaw, parsec, pkgconfig, text
|
||||
, vector
|
||||
}:
|
||||
mkDerivation {
|
||||
@@ -86000,14 +86000,14 @@ self: {
|
||||
setupHaskellDepends = [ base Cabal directory filepath ];
|
||||
libraryHaskellDepends = [ base bytestring text vector ];
|
||||
librarySystemDepends = [ fltk14 ];
|
||||
libraryPkgconfigDepends = [ libGLU_combined ];
|
||||
libraryPkgconfigDepends = [ libGLU libGL ];
|
||||
libraryToolDepends = [ c2hs pkgconfig ];
|
||||
executableHaskellDepends = [
|
||||
base directory filepath mtl OpenGLRaw parsec text
|
||||
];
|
||||
description = "FLTK bindings";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {inherit (pkgs) fltk14; inherit (pkgs) libGLU_combined;
|
||||
}) {inherit (pkgs) fltk14; inherit (pkgs) libGLU libGL;
|
||||
pkgconfig = null;};
|
||||
|
||||
"fltkhs-demos" = callPackage
|
||||
|
||||
Reference in New Issue
Block a user