2023-04-21 04:18:24 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, cmake
|
|
|
|
, fetchFromGitHub
|
|
|
|
, python3
|
|
|
|
, flex
|
|
|
|
, bison
|
|
|
|
, qt5
|
|
|
|
, CoreServices
|
|
|
|
, libiconv
|
|
|
|
, withSqlite ? true, sqlite
|
|
|
|
}:
|
2008-10-23 14:23:12 +00:00
|
|
|
|
2016-03-11 21:15:40 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-10-30 15:44:08 +00:00
|
|
|
pname = "doxygen";
|
2023-05-24 04:33:45 +00:00
|
|
|
version = "1.9.7";
|
2020-10-30 15:44:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "doxygen";
|
|
|
|
repo = "doxygen";
|
2021-01-23 12:26:19 +00:00
|
|
|
rev = "Release_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
2023-05-24 04:33:45 +00:00
|
|
|
sha256 = "sha256-ezeMQk+Vyi9qNsYwbaRRruaIYGY8stFf71W7GonXqco=";
|
2008-10-23 14:23:12 +00:00
|
|
|
};
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2019-12-14 21:27:49 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
python3
|
|
|
|
flex
|
|
|
|
bison
|
|
|
|
];
|
2016-04-08 11:49:26 +00:00
|
|
|
|
2023-01-20 11:12:30 +00:00
|
|
|
buildInputs = [ libiconv ]
|
2023-04-21 04:18:24 +00:00
|
|
|
++ lib.optionals withSqlite [ sqlite ]
|
2023-01-20 11:12:30 +00:00
|
|
|
++ lib.optionals (qt5 != null) (with qt5; [ qtbase wrapQtAppsHook ])
|
|
|
|
++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2023-04-21 04:18:24 +00:00
|
|
|
cmakeFlags = [ "-DICONV_INCLUDE_DIR=${libiconv}/include" ]
|
|
|
|
++ lib.optional withSqlite "-Duse_sqlite3=ON"
|
|
|
|
++ lib.optional (qt5 != null) "-Dbuild_wizard=YES";
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE =
|
2021-01-23 12:26:19 +00:00
|
|
|
lib.optionalString stdenv.isDarwin "-mmacosx-version-min=10.9";
|
2016-03-28 22:19:41 +00:00
|
|
|
|
2023-04-22 00:57:34 +00:00
|
|
|
# put examples in an output so people/tools can test against them
|
|
|
|
outputs = [ "out" "examples" ];
|
|
|
|
postInstall = ''
|
|
|
|
cp -r ../examples $examples
|
|
|
|
'';
|
|
|
|
|
2009-03-05 15:17:53 +00:00
|
|
|
meta = {
|
2021-01-23 12:26:19 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2022-03-12 13:16:46 +00:00
|
|
|
homepage = "https://www.doxygen.nl/";
|
|
|
|
changelog = "https://www.doxygen.nl/manual/changelog.html";
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "Source code documentation generator tool";
|
2009-03-05 15:17:53 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
2022-03-12 13:16:46 +00:00
|
|
|
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.
|
2009-03-05 15:17:53 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
platforms = if qt5 != null then lib.platforms.linux else lib.platforms.unix;
|
2009-03-05 15:17:53 +00:00
|
|
|
};
|
2008-10-23 14:23:12 +00:00
|
|
|
}
|