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