21e3ff658a
Scilab note: the parameters already had pointed to nonexistent dirs before this set of refactoring. But that config wasn't even used by default.
49 lines
2.3 KiB
Nix
49 lines
2.3 KiB
Nix
{ composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
|
|
, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng }:
|
|
|
|
let inherit (composableDerivation) edf; in
|
|
|
|
composableDerivation.composableDerivation {} rec {
|
|
name = "fltk-2.0.x-alpha-r9296";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.easysw.com/pub/fltk/snapshots/${name}.tar.bz2";
|
|
sha256 = "0353ngb7gpyklc9mdz8629big2na3c73akfwhis8fhqp7jkbs9ih";
|
|
};
|
|
|
|
propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
|
|
|
|
buildInputs = [ pkgconfig ];
|
|
|
|
flags =
|
|
# this could be tidied up (?).. eg why does it require freeglut without glSupport?
|
|
edf { name = "cygwin"; } # use the CygWin libraries default=no
|
|
// edf { name = "debug"; } # turn on debugging default=no
|
|
// edf { name = "gl"; enable = { buildInputs = [ mesa ]; }; } # turn on OpenGL support default=yes
|
|
// edf { name = "shared"; } # turn on shared libraries default=no
|
|
// edf { name = "threads"; } # enable multi-threading support
|
|
// edf { name = "quartz"; enable = { buildInputs = "quartz"; }; } # don't konw yet what quartz is # use Quartz instead of Quickdraw (default=no)
|
|
// edf { name = "largefile"; } # omit support for large files
|
|
// edf { name = "localjpeg"; disable = { buildInputs = [libjpeg]; }; } # use local JPEG library, default=auto
|
|
// edf { name = "localzlib"; disable = { buildInputs = [zlib]; }; } # use local ZLIB library, default=auto
|
|
// edf { name = "localpng"; disable = { buildInputs = [libpng]; }; } # use local PNG library, default=auto
|
|
// edf { name = "xinerama"; enable = { buildInputs = [libXinerama]; }; } # turn on Xinerama support default=no
|
|
// edf { name = "xft"; enable = { buildInputs=[libXft]; }; } # turn on Xft support default=no
|
|
// edf { name = "xdbe"; }; # turn on Xdbe support default=no
|
|
|
|
cfg = {
|
|
largefileSupport = true; # is default
|
|
glSupport = true; # doesn't build without it. Why?
|
|
localjpegSupport = false;
|
|
localzlibSupport = false;
|
|
localpngSupport = false;
|
|
sharedSupport = true;
|
|
threadsSupport = true;
|
|
};
|
|
|
|
meta = {
|
|
description = "a C++ cross platform lightweight gui library binding";
|
|
homepage = http://www.fltk.org;
|
|
};
|
|
}
|