db68a3f47d
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56/bin/reswrap -h` got 0 exit code - ran `/nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56/bin/reswrap --help` got 0 exit code - ran `/nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56/bin/adie -h` got 0 exit code - ran `/nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56/bin/adie --help` got 0 exit code - ran `/nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56/bin/fox-config --version` and found version 1.6.56 - found 1.6.56 with grep in /nix/store/84izmk7vawbjy8jq443ym0wx7k2a89my-fox-1.6.56 - directory tree listing: https://gist.github.com/04085b0f58d3548a56ff6ed257520c45
42 lines
1.4 KiB
Nix
42 lines
1.4 KiB
Nix
{ stdenv, fetchurl, xlibsWrapper, libpng, libjpeg, libtiff, zlib, bzip2, libXcursor
|
|
, libXrandr, libGLU_combined, libXft, libXfixes, xinput
|
|
, CoreServices }:
|
|
|
|
let
|
|
version = "1.6.56";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fox-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.fox-toolkit.org/pub/${name}.tar.gz";
|
|
sha256 = "1ckcb12gblz1ad1371ah1qirxn3r9zdngh9w0357hsqfmkyfa5y5";
|
|
};
|
|
|
|
buildInputs = [
|
|
xlibsWrapper libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
|
|
libXft libGLU_combined libXfixes xinput
|
|
] ++ stdenv.lib.optional stdenv.isDarwin CoreServices;
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
branch = "1.6";
|
|
description = "A 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 = stdenv.lib.licenses.lgpl3;
|
|
maintainers = [];
|
|
platforms = stdenv.lib.platforms.mesaPlatforms;
|
|
};
|
|
}
|