mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Added build expression for doxygen 1.5.7.1.
svn path=/nixpkgs/trunk/; revision=13106
This commit is contained in:
parent
775fd2aac2
commit
574a1aa636
15
pkgs/development/tools/documentation/doxygen/default.nix
Normal file
15
pkgs/development/tools/documentation/doxygen/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{stdenv, fetchurl, graphviz, perl, flex, bison, gnumake, libX11, libXext, qt}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "doxygen-1.5.7.1";
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
|
||||
sha256 = "0abds9d2ff4476105myl4933q6l4vqyyyajx6qial88iffbczsbw";
|
||||
};
|
||||
buildInputs = [graphviz perl flex bison libX11 libXext qt];
|
||||
prefixKey = "--prefix ";
|
||||
configureFlags = "--release"
|
||||
+ " --make ${gnumake}/bin/make"
|
||||
+ (if qt == null then "" else " --with-doxywizard")
|
||||
;
|
||||
}
|
|
@ -2227,6 +2227,12 @@ let
|
|||
inherit (xlibs) libX11 libXt;
|
||||
};
|
||||
|
||||
doxygen = import ../development/tools/documentation/doxygen {
|
||||
inherit fetchurl stdenv graphviz perl flex bison gnumake;
|
||||
inherit (xlibs) libX11 libXext;
|
||||
qt = if getPkgConfig "doxygen" "qt3" true then qt3 else null;
|
||||
};
|
||||
|
||||
elfutils = composedArgsAndFun
|
||||
(selectVersion ../development/tools/misc/elfutils "0.131") {
|
||||
inherit fetchurl stdenv;
|
||||
|
|
Loading…
Reference in a new issue