2015-09-15 09:13:22 +00:00
|
|
|
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
|
2018-02-24 13:12:44 +00:00
|
|
|
, libXrandr, libGLU_combined, libXft, libXfixes, xinput
|
2017-09-10 15:05:01 +00:00
|
|
|
, CoreServices }:
|
2012-10-16 15:30:44 +00:00
|
|
|
|
|
|
|
let
|
2018-03-18 00:52:43 +00:00
|
|
|
version = "1.6.56";
|
2012-10-16 15:30:44 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "fox-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.fox-toolkit.org/pub/${name}.tar.gz";
|
2018-03-18 00:52:43 +00:00
|
|
|
sha256 = "1ckcb12gblz1ad1371ah1qirxn3r9zdngh9w0357hsqfmkyfa5y5";
|
2012-10-16 15:30:44 +00:00
|
|
|
};
|
|
|
|
|
2017-09-10 15:05:01 +00:00
|
|
|
buildInputs = [
|
|
|
|
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
|
2018-02-24 13:12:44 +00:00
|
|
|
libXft libGLU_combined libXfixes xinput
|
2017-09-10 15:05:01 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
2012-10-16 15:30:44 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 23:48:11 +00:00
|
|
|
|
2012-10-16 15:30:44 +00:00
|
|
|
meta = {
|
2014-11-03 11:09:48 +00:00
|
|
|
branch = "1.6";
|
2015-04-30 15:05:14 +00:00
|
|
|
description = "A C++ based class library for building Graphical User Interfaces";
|
2012-10-16 15:30:44 +00:00
|
|
|
longDescription = ''
|
|
|
|
FOX stands for Free Objects for X.
|
|
|
|
It is a C++ based class library for building Graphical User Interfaces.
|
|
|
|
Initially, it was developed for LINUX, but the scope of this project has in the course of time become somewhat more ambitious.
|
|
|
|
Current aims are to make FOX completely platform independent, and thus programs written against the FOX library will be only a compile away from running on a variety of platforms.
|
|
|
|
'';
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://fox-toolkit.org;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2017-03-23 02:02:09 +00:00
|
|
|
maintainers = [];
|
2013-10-07 15:36:47 +00:00
|
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
2012-10-16 15:30:44 +00:00
|
|
|
};
|
|
|
|
}
|