mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +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" ```
81 lines
2.2 KiB
Nix
81 lines
2.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, python3
|
|
, flex
|
|
, bison
|
|
, qt5
|
|
, CoreServices
|
|
, libiconv
|
|
, spdlog
|
|
, sqlite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "doxygen";
|
|
version = "1.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "doxygen";
|
|
repo = "doxygen";
|
|
rev = "Release_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
sha256 = "sha256-FPI5ICdn9Tne/g9SP6jAQS813AAyoDNooDR/Hyvq6R4=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "sys-spdlog-fix.patch";
|
|
url = "https://github.com/doxygen/doxygen/commit/0df6da616f01057d28b11c8bee28443c102dd424.patch";
|
|
hash = "sha256-7efkCQFYGslwqhIuPsLYTEiA1rq+mO0DuyQBMt0O+m0=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
python3
|
|
flex
|
|
bison
|
|
];
|
|
|
|
buildInputs = [ libiconv spdlog sqlite ]
|
|
++ lib.optionals (qt5 != null) (with qt5; [ qtbase wrapQtAppsHook ])
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ];
|
|
|
|
cmakeFlags = [
|
|
"-DICONV_INCLUDE_DIR=${libiconv}/include"
|
|
"-Duse_sys_spdlog=ON"
|
|
"-Duse_sys_sqlite3=ON"
|
|
] ++ lib.optional (qt5 != null) "-Dbuild_wizard=YES";
|
|
|
|
env.NIX_CFLAGS_COMPILE =
|
|
lib.optionalString stdenv.hostPlatform.isDarwin "-mmacosx-version-min=10.9";
|
|
|
|
# put examples in an output so people/tools can test against them
|
|
outputs = [ "out" "examples" ];
|
|
postInstall = ''
|
|
cp -r ../examples $examples
|
|
'';
|
|
|
|
meta = {
|
|
license = lib.licenses.gpl2Plus;
|
|
homepage = "https://www.doxygen.nl/";
|
|
changelog = "https://www.doxygen.nl/manual/changelog.html";
|
|
description = "Source code documentation generator tool";
|
|
mainProgram = "doxygen";
|
|
|
|
longDescription = ''
|
|
Doxygen is the de facto standard tool for generating documentation from
|
|
annotated C++ sources, but it also supports other popular programming
|
|
languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba,
|
|
Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL and to some extent
|
|
D. It can generate an on-line documentation browser (in HTML) and/or an
|
|
off-line reference manual (in LaTeX) from a set of documented source
|
|
files.
|
|
'';
|
|
|
|
platforms = if qt5 != null then lib.platforms.linux else lib.platforms.unix;
|
|
};
|
|
}
|