2019-12-14 21:27:49 +00:00
|
|
|
{ stdenv, cmake, fetchurl, python3, flex, bison, qt4, CoreServices, libiconv }:
|
2008-10-23 15:23:12 +01:00
|
|
|
|
2016-03-11 21:15:40 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2020-04-15 20:21:19 +01:00
|
|
|
name = "doxygen-1.8.18";
|
2016-04-08 12:49:26 +01:00
|
|
|
|
2008-10-23 15:23:12 +01:00
|
|
|
src = fetchurl {
|
2019-01-02 16:06:20 +00:00
|
|
|
urls = [
|
|
|
|
"mirror://sourceforge/doxygen/${name}.src.tar.gz" # faster, with https, etc.
|
|
|
|
"http://doxygen.nl/files/${name}.src.tar.gz"
|
|
|
|
];
|
2020-04-15 20:21:19 +01:00
|
|
|
sha256 = "0mh6s1ri1fs5yb27m0avnjsbcxpchgb9aaprq4bd3lj6vjg3s5qq";
|
2008-10-23 15:23:12 +01: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 12:49:26 +01:00
|
|
|
|
2011-07-07 21:02:59 +01:00
|
|
|
buildInputs =
|
2019-12-14 21:27:49 +00:00
|
|
|
stdenv.lib.optional (qt4 != null) qt4
|
2014-08-29 22:28:57 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isSunOS libiconv
|
2015-09-29 02:32:41 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2016-03-11 21:15:40 +00:00
|
|
|
cmakeFlags =
|
2016-04-08 12:49:26 +01:00
|
|
|
[ "-DICONV_INCLUDE_DIR=${libiconv}/include" ] ++
|
2016-03-11 21:15:40 +00:00
|
|
|
stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES";
|
2009-03-05 15:17:53 +00:00
|
|
|
|
2016-03-28 23:19:41 +01:00
|
|
|
NIX_CFLAGS_COMPILE =
|
2019-10-30 00:12:09 +00:00
|
|
|
stdenv.lib.optionalString stdenv.isDarwin "-mmacosx-version-min=10.9";
|
2016-03-28 23:19:41 +01:00
|
|
|
|
2011-07-07 21:02:59 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails
|
2011-08-10 00:35:21 +01:00
|
|
|
|
2009-03-05 15:17:53 +00:00
|
|
|
meta = {
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://doxygen.nl/";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Source code documentation generator tool";
|
2009-03-05 15:17:53 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Doxygen is a documentation system for C++, C, Java, Objective-C,
|
|
|
|
Python, IDL (CORBA and Microsoft flavors), Fortran, VHDL, PHP,
|
|
|
|
C\#, 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.
|
|
|
|
'';
|
|
|
|
|
2012-12-28 18:54:15 +00:00
|
|
|
platforms = if qt4 != null then stdenv.lib.platforms.linux else stdenv.lib.platforms.unix;
|
2009-03-05 15:17:53 +00:00
|
|
|
};
|
2008-10-23 15:23:12 +01:00
|
|
|
}
|