depot/third_party/nixpkgs/pkgs/development/libraries/fox/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

49 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchurl
, libpng
, libjpeg
, libtiff
, zlib
, bzip2
, libGL
, libGLU
, libXcursor
, libXext
, libXrandr
, libXft
, CoreServices
}:
stdenv.mkDerivation rec {
pname = "fox";
version = "1.7.81";
src = fetchurl {
url = "http://fox-toolkit.org/ftp/${pname}-${version}.tar.gz";
sha256 = "sha256-bu+IEqNkv9OAf96dPYre3CP759pjalVIbYyc3QSQW2w=";
};
buildInputs = [ libpng libjpeg libtiff zlib bzip2 libGL libGLU libXcursor libXext libXrandr libXft ]
++ lib.optional stdenv.isDarwin CoreServices;
doCheck = true;
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
meta = with lib; {
description = "C++ based class library for building Graphical User Interfaces";
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.
'';
homepage = "http://fox-toolkit.org";
license = licenses.lgpl3Plus;
maintainers = [];
platforms = platforms.all;
};
}