nixpkgs/pkgs/development/libraries/fltk/1.4.nix

50 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi
2018-11-20 04:06:27 +00:00
, freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng
2019-06-19 18:05:27 +00:00
, libtiff, freetype, Cocoa, AGL, GLUT
2018-11-20 04:06:27 +00:00
}:
let
version = "1.4.x-r13121";
2019-06-19 18:05:27 +00:00
in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "fltk";
inherit version;
2018-11-20 04:06:27 +00:00
src = fetchurl {
url = "http://fltk.org/pub/fltk/snapshots/fltk-${version}.tar.gz";
sha256 = "1v8wxvxcbk99i82x2v5fpqg5vj8n7g8a38g30ry7nzcjn5sf3r63";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ];
nativeBuildInputs = [ pkgconfig ];
2019-06-19 18:05:27 +00:00
buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ]
++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ];
2018-11-20 04:06:27 +00:00
2019-06-19 18:05:27 +00:00
propagatedBuildInputs = [ xorgproto ]
++ (if stdenv.isDarwin
then [ freetype libtiff ]
else [ xlibsWrapper libXi freeglut ]);
2018-11-20 04:06:27 +00:00
configureFlags = [
"--enable-gl"
"--enable-largefile"
"--enable-shared"
"--enable-threads"
"--enable-xft"
];
2019-06-19 18:05:27 +00:00
preConfigure = "make clean";
2018-11-20 04:06:27 +00:00
enableParallelBuilding = true;
2019-06-19 18:05:27 +00:00
meta = with stdenv.lib; {
2018-11-20 04:06:27 +00:00
description = "A C++ cross-platform lightweight GUI library";
homepage = http://www.fltk.org;
2019-06-19 18:05:27 +00:00
platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl2;
2018-11-20 04:06:27 +00:00
};
}