2024-11-10 18:59:09 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
libpng,
|
|
|
|
libjpeg,
|
|
|
|
libtiff,
|
|
|
|
zlib,
|
|
|
|
bzip2,
|
|
|
|
mesa_glu,
|
|
|
|
libXcursor,
|
|
|
|
libXext,
|
|
|
|
libXrandr,
|
|
|
|
libXft,
|
|
|
|
cups,
|
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
|
|
|
};
|
|
|
|
|
2024-11-10 18:59:09 +00:00
|
|
|
buildInputs =
|
|
|
|
[
|
|
|
|
libpng
|
|
|
|
libjpeg
|
|
|
|
libtiff
|
|
|
|
zlib
|
|
|
|
bzip2
|
|
|
|
mesa_glu
|
|
|
|
libXcursor
|
|
|
|
libXext
|
|
|
|
libXrandr
|
|
|
|
libXft
|
|
|
|
]
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
cups
|
|
|
|
];
|
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;
|
2024-07-30 14:21:42 +00:00
|
|
|
maintainers = [ ];
|
2017-03-22 19:08:56 +00:00
|
|
|
platforms = platforms.all;
|
2012-10-16 15:30:26 +00:00
|
|
|
};
|
|
|
|
}
|