nixpkgs/pkgs/development/tools/documentation/doxygen/default.nix

63 lines
1.7 KiB
Nix
Raw Normal View History

2015-09-29 02:32:41 +01:00
{ stdenv, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }:
let
2014-02-28 15:09:24 +00:00
name = "doxygen-1.8.6";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
2014-02-28 15:09:24 +00:00
sha256 = "0pskjlkbj76m9ka7zi66yj8ffjcv821izv3qxqyyphf0y0jqcwba";
};
2015-09-29 02:32:41 +01:00
prePatch = ''
substituteInPlace configure --replace /usr/bin/install $(type -P install)
'';
patches = [ ./tmake.patch ];
buildInputs =
2014-02-28 15:09:24 +00:00
[ perl python flex bison ]
2015-09-29 02:32:41 +01: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 ];
prefixKey = "--prefix ";
configureFlags =
[ "--dot dot" ]
2014-08-29 22:28:57 +01:00
++ stdenv.lib.optional stdenv.isSunOS "--install install"
++ stdenv.lib.optional (qt4 != null) "--with-doxywizard";
2014-02-28 15:09:24 +00:00
preConfigure =
''
patchShebangs .
'' + stdenv.lib.optionalString (qt4 != null)
''
echo "using QTDIR=${qt4}..."
export QTDIR=${qt4}
'';
makeFlags = "MAN1DIR=share/man/man1";
enableParallelBuilding = true;
meta = {
license = stdenv.lib.licenses.gpl2Plus;
homepage = "http://doxygen.org/";
description = "Source code documentation generator tool";
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.
'';
maintainers = [stdenv.lib.maintainers.simons];
platforms = if qt4 != null then stdenv.lib.platforms.linux else stdenv.lib.platforms.unix;
};
}