fltk: remove cf-private
This commit is contained in:
parent
6f16de27d2
commit
91b595945e
3 changed files with 27 additions and 38 deletions
|
@ -1,11 +1,13 @@
|
|||
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi
|
||||
, freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng
|
||||
, libtiff, freetype, cf-private, Cocoa, AGL, GLUT
|
||||
, libtiff, freetype, Cocoa, AGL, GLUT
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.4.x-r13121";
|
||||
in stdenv.mkDerivation {
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fltk-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -13,19 +15,16 @@ in stdenv.mkDerivation {
|
|||
sha256 = "1v8wxvxcbk99i82x2v5fpqg5vj8n7g8a38g30ry7nzcjn5sf3r63";
|
||||
};
|
||||
|
||||
preConfigure = "make clean";
|
||||
|
||||
patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
|
||||
|
||||
buildInputs = [
|
||||
libGLU_combined
|
||||
libjpeg
|
||||
zlib
|
||||
libpng
|
||||
libXft
|
||||
];
|
||||
propagatedBuildInputs = [ xorgproto ]
|
||||
++ (if stdenv.isDarwin
|
||||
then [ freetype libtiff ]
|
||||
else [ xlibsWrapper libXi freeglut ]);
|
||||
|
||||
configureFlags = [
|
||||
"--enable-gl"
|
||||
|
@ -35,18 +34,15 @@ in stdenv.mkDerivation {
|
|||
"--enable-xft"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ xorgproto ]
|
||||
++ (if stdenv.isDarwin
|
||||
then [ Cocoa AGL GLUT freetype libtiff cf-private /* Needed for NSDefaultRunLoopMode */ ]
|
||||
else [ xlibsWrapper libXi freeglut ]);
|
||||
preConfigure = "make clean";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A C++ cross-platform lightweight GUI library";
|
||||
homepage = http://www.fltk.org;
|
||||
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +1,13 @@
|
|||
{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi
|
||||
, freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng
|
||||
, libtiff, freetype, cf-private, Cocoa, AGL, GLUT
|
||||
, libtiff, freetype, Cocoa, AGL, GLUT
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.3.5";
|
||||
in stdenv.mkDerivation {
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "fltk-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
|
@ -16,14 +18,13 @@ in stdenv.mkDerivation {
|
|||
patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
|
||||
|
||||
buildInputs = [
|
||||
libGLU_combined
|
||||
libjpeg
|
||||
zlib
|
||||
libpng
|
||||
libXft
|
||||
];
|
||||
propagatedBuildInputs = [ xorgproto ]
|
||||
++ (if stdenv.isDarwin
|
||||
then [ freetype libtiff ]
|
||||
else [ xlibsWrapper libXi freeglut ]);
|
||||
|
||||
configureFlags = [
|
||||
"--enable-gl"
|
||||
|
@ -33,18 +34,12 @@ in stdenv.mkDerivation {
|
|||
"--enable-xft"
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ xorgproto ]
|
||||
++ (if stdenv.isDarwin
|
||||
then [ Cocoa AGL GLUT freetype libtiff cf-private /* Needed for NSDefaultRunLoopMode */ ]
|
||||
else [ xlibsWrapper libXi freeglut ]);
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A C++ cross-platform lightweight GUI library";
|
||||
homepage = http://www.fltk.org;
|
||||
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -10416,11 +10416,9 @@ in
|
|||
flite = callPackage ../development/libraries/flite { };
|
||||
|
||||
fltk13 = callPackage ../development/libraries/fltk {
|
||||
inherit (darwin) cf-private;
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa AGL GLUT;
|
||||
};
|
||||
fltk14 = callPackage ../development/libraries/fltk/1.4.nix {
|
||||
inherit (darwin) cf-private;
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa AGL GLUT;
|
||||
};
|
||||
fltk = res.fltk13;
|
||||
|
|
Loading…
Reference in a new issue