Files
nixpkgs/pkgs/development/libraries/fox/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchurl,
libpng,
libjpeg,
libtiff,
zlib,
bzip2,
mesa_glu,
libXcursor,
libXext,
libXrandr,
libXft,
cups,
}:
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
mesa_glu
libXcursor
libXext
libXrandr
libXft
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
cups
];
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;
};
}