2022-10-29 21:41:03 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
2022-12-02 21:47:22 +00:00
|
|
|
, fetchpatch
|
2022-10-29 21:41:03 +00:00
|
|
|
, libpng
|
|
|
|
, libjpeg
|
|
|
|
, libtiff
|
|
|
|
, zlib
|
|
|
|
, bzip2
|
2022-12-02 21:47:22 +00:00
|
|
|
, libGL
|
|
|
|
, libGLU
|
2022-10-29 21:41:03 +00:00
|
|
|
, libXcursor
|
|
|
|
, libXext
|
|
|
|
, libXrandr
|
|
|
|
, libXft
|
2022-12-02 21:47:22 +00:00
|
|
|
, CoreServices
|
2022-10-29 21:41:03 +00:00
|
|
|
}:
|
2012-10-16 15:30:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fox";
|
2022-12-02 21:47:22 +00:00
|
|
|
version = "1.7.81";
|
2012-10-16 15:30:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-12-02 21:47:22 +00:00
|
|
|
url = "http://fox-toolkit.org/ftp/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "sha256-bu+IEqNkv9OAf96dPYre3CP759pjalVIbYyc3QSQW2w=";
|
2012-10-16 15:30:26 +00:00
|
|
|
};
|
|
|
|
|
2022-12-02 21:47:22 +00:00
|
|
|
buildInputs = [ libpng libjpeg libtiff zlib bzip2 libGL libGLU libXcursor libXext libXrandr libXft ]
|
2021-01-21 17:00:13 +00:00
|
|
|
++ lib.optional stdenv.isDarwin CoreServices;
|
2012-10-16 15:30:26 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 23:47:59 +00:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "C++ based class library for building Graphical User Interfaces";
|
2012-10-16 15:30:26 +00:00
|
|
|
longDescription = ''
|
2017-03-22 19:08:56 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://fox-toolkit.org";
|
2022-12-02 21:47:22 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2017-03-23 02:02:09 +00:00
|
|
|
maintainers = [];
|
2017-03-22 19:08:56 +00:00
|
|
|
platforms = platforms.all;
|
2012-10-16 15:30:26 +00:00
|
|
|
};
|
|
|
|
}
|