mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 12:23:55 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, libpng
|
|
, libjpeg
|
|
, libtiff
|
|
, zlib
|
|
, bzip2
|
|
, libXcursor
|
|
, libXrandr
|
|
, libGLU
|
|
, libGL
|
|
, libXext
|
|
, libXft
|
|
, libXfixes
|
|
, mesa
|
|
, xinput
|
|
, CoreServices
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fox";
|
|
version = "1.6.57";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.fox-toolkit.org/pub/${pname}-${version}.tar.gz";
|
|
sha256 = "08w98m6wjadraw1pi13igzagly4b2nfa57kdqdnkjfhgkvg1bvv5";
|
|
};
|
|
|
|
buildInputs = [
|
|
libpng libjpeg libtiff zlib bzip2 libXcursor libXrandr
|
|
libXext libXft libGLU libGL libXfixes xinput
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin CoreServices;
|
|
|
|
doCheck = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = {
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
branch = "1.6";
|
|
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 = lib.licenses.lgpl3;
|
|
maintainers = [ ];
|
|
inherit (mesa.meta) platforms;
|
|
};
|
|
}
|