doxygen: 1.8.20 -> 1.9.3
This commit is contained in:
parent
46baf627e2
commit
8f1cf1ea0b
1 changed files with 11 additions and 10 deletions
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "doxygen";
|
pname = "doxygen";
|
||||||
version = "1.8.20";
|
version = "1.9.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "doxygen";
|
owner = "doxygen";
|
||||||
repo = "doxygen";
|
repo = "doxygen";
|
||||||
rev = "Release_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
rev = "Release_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
sha256 = "17chvi3i80rj4750smpizf562xjzd2xcv5rfyh997pyvc1zbq5rh";
|
sha256 = "1xfsv31ffrv03qhxlscav0r5mdi3qz4654ib9cq35rvmxfj999bw";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -30,19 +30,20 @@ stdenv.mkDerivation rec {
|
||||||
NIX_CFLAGS_COMPILE =
|
NIX_CFLAGS_COMPILE =
|
||||||
lib.optionalString stdenv.isDarwin "-mmacosx-version-min=10.9";
|
lib.optionalString stdenv.isDarwin "-mmacosx-version-min=10.9";
|
||||||
|
|
||||||
enableParallelBuilding = false;
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
license = lib.licenses.gpl2Plus;
|
license = lib.licenses.gpl2Plus;
|
||||||
homepage = "http://doxygen.nl/";
|
homepage = "https://www.doxygen.nl/";
|
||||||
|
changelog = "https://www.doxygen.nl/manual/changelog.html";
|
||||||
description = "Source code documentation generator tool";
|
description = "Source code documentation generator tool";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Doxygen is a documentation system for C++, C, Java, Objective-C,
|
Doxygen is the de facto standard tool for generating documentation from
|
||||||
Python, IDL (CORBA and Microsoft flavors), Fortran, VHDL, PHP,
|
annotated C++ sources, but it also supports other popular programming
|
||||||
C\#, and to some extent D. It can generate an on-line
|
languages such as C, Objective-C, C#, PHP, Java, Python, IDL (Corba,
|
||||||
documentation browser (in HTML) and/or an off-line reference
|
Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL and to some extent
|
||||||
manual (in LaTeX) from a set of documented source files.
|
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.
|
||||||
'';
|
'';
|
||||||
|
|
||||||
platforms = if qt5 != null then lib.platforms.linux else lib.platforms.unix;
|
platforms = if qt5 != null then lib.platforms.linux else lib.platforms.unix;
|
||||||
|
|
Loading…
Reference in a new issue