summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-02-28 10:08:21 +0000
committerLudovic Courtès <ludo@gnu.org>2012-02-28 10:08:21 +0000
commit026f6e76976095ccec203c114913a851033eef19 (patch)
treead6f0173658f87c5ed24a4fb0a9d82561abfbd6a /pkgs/development
parent409e44cbe173532815473b661244efe63899cdd5 (diff)
downloadnixpkgs-026f6e76976095ccec203c114913a851033eef19.tar
nixpkgs-026f6e76976095ccec203c114913a851033eef19.tar.gz
nixpkgs-026f6e76976095ccec203c114913a851033eef19.tar.bz2
nixpkgs-026f6e76976095ccec203c114913a851033eef19.tar.lz
nixpkgs-026f6e76976095ccec203c114913a851033eef19.tar.xz
nixpkgs-026f6e76976095ccec203c114913a851033eef19.tar.zst
nixpkgs-026f6e76976095ccec203c114913a851033eef19.zip
Doxygen: Reinstate version 1.7.
svn path=/nixpkgs/trunk/; revision=32672
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/documentation/doxygen/1.7.nix52
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgs/development/tools/documentation/doxygen/1.7.nix b/pkgs/development/tools/documentation/doxygen/1.7.nix
new file mode 100644
index 00000000000..86f2e8cf2b2
--- /dev/null
+++ b/pkgs/development/tools/documentation/doxygen/1.7.nix
@@ -0,0 +1,52 @@
+{ stdenv, fetchurl, perl, flex, bison, qt4 }:
+
+let
+  name = "doxygen-1.7.4";
+in
+stdenv.mkDerivation {
+  inherit name;
+
+  src = fetchurl {
+    url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
+    sha256 = "0rnzyp5f8c454fdkgpg5hpxwmx642spgxcpw3blbvnyw8129jp44";
+  };
+
+  patches = [ ./tmake.patch ];
+
+  buildInputs =
+    [ perl flex bison ]
+    ++ stdenv.lib.optional (qt4 != null) qt4;
+
+  prefixKey = "--prefix ";
+
+  configureFlags =
+    [ "--dot dot" ]
+    ++ stdenv.lib.optional (qt4 != null) "--with-doxywizard";
+
+  preConfigure = stdenv.lib.optionalString (qt4 != null)
+    ''
+      echo "using QTDIR=${qt4}..."
+      export QTDIR=${qt4}
+    '';
+
+  makeFlags = "MAN1DIR=share/man/man1";
+
+  enableParallelBuilding = true;
+
+  meta = {
+    license = "GPLv2+";
+    homepage = "http://doxygen.org/";
+    description = "Doxygen, a 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;
+  };
+}