nixpkgs/pkgs/development/libraries/fox/fox-1.6.nix
R. RyanTM c03cb44ad1 fox_1_6: 1.6.56 -> 1.6.57
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/fox/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/0d83j376zvh006b5slmgdx86bcm3dxkm-fox-1.6.57/bin/reswrap -h’ got 0 exit code
- ran ‘/nix/store/0d83j376zvh006b5slmgdx86bcm3dxkm-fox-1.6.57/bin/reswrap --help’ got 0 exit code
- ran ‘/nix/store/0d83j376zvh006b5slmgdx86bcm3dxkm-fox-1.6.57/bin/fox-config --version’ and found version 1.6.57
- found 1.6.57 with grep in /nix/store/0d83j376zvh006b5slmgdx86bcm3dxkm-fox-1.6.57
- directory tree listing: https://gist.github.com/baa2d8696211116ff0be92b664965741
2018-04-10 23:48:52 -07:00

43 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.57";
in
stdenv.mkDerivation rec {
name = "fox-${version}";
src = fetchurl {
url = "ftp://ftp.fox-toolkit.org/pub/${name}.tar.gz";
sha256 = "08w98m6wjadraw1pi13igzagly4b2nfa57kdqdnkjfhgkvg1bvv5";
};
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;
};
}