2016-03-11 13:15:40 -08:00
|
|
|
{ stdenv, cmake, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }:
|
2008-10-23 07:23:12 -07:00
|
|
|
|
2016-03-11 13:15:40 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2009-03-05 07:17:53 -08:00
|
|
|
|
2018-02-01 23:57:51 -08:00
|
|
|
name = "doxygen-1.8.14";
|
2016-04-08 04:49:26 -07:00
|
|
|
|
2008-10-23 07:23:12 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
|
2018-02-01 23:57:51 -08:00
|
|
|
sha256 = "d1757e02755ef6f56fd45f1f4398598b920381948d6fcfa58f5ca6aa56f59d4d";
|
2008-10-23 07:23:12 -07:00
|
|
|
};
|
2009-03-05 07:17:53 -08:00
|
|
|
|
2016-03-11 13:15:40 -08:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2016-04-08 04:49:26 -07:00
|
|
|
|
2011-07-07 13:02:59 -07:00
|
|
|
buildInputs =
|
2014-02-28 07:09:24 -08:00
|
|
|
[ perl python flex bison ]
|
2015-09-28 18:32:41 -07:00
|
|
|
++ stdenv.lib.optional (qt4 != null) qt4
|
2014-08-29 14:28:57 -07:00
|
|
|
++ stdenv.lib.optional stdenv.isSunOS libiconv
|
2015-09-28 18:32:41 -07:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
|
2009-03-05 07:17:53 -08:00
|
|
|
|
2016-03-11 13:15:40 -08:00
|
|
|
cmakeFlags =
|
2016-04-08 04:49:26 -07:00
|
|
|
[ "-DICONV_INCLUDE_DIR=${libiconv}/include" ] ++
|
2016-03-11 13:15:40 -08:00
|
|
|
stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES";
|
2009-03-05 07:17:53 -08:00
|
|
|
|
2016-03-28 15:19:41 -07:00
|
|
|
NIX_CFLAGS_COMPILE =
|
|
|
|
stdenv.lib.optional stdenv.isDarwin "-mmacosx-version-min=10.9";
|
|
|
|
|
2011-07-07 13:02:59 -07:00
|
|
|
enableParallelBuilding = true;
|
2018-04-24 20:20:18 -07:00
|
|
|
doCheck = false; # fails
|
2011-08-09 16:35:21 -07:00
|
|
|
|
2009-03-05 07:17:53 -08:00
|
|
|
meta = {
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://doxygen.org/;
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Source code documentation generator tool";
|
2009-03-05 07:17:53 -08: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 10:54:15 -08:00
|
|
|
platforms = if qt4 != null then stdenv.lib.platforms.linux else stdenv.lib.platforms.unix;
|
2009-03-05 07:17:53 -08:00
|
|
|
};
|
2008-10-23 07:23:12 -07:00
|
|
|
}
|