summary refs log tree commit diff
path: root/pkgs/development/tools/documentation
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-04-08 13:49:26 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-04-08 13:49:26 +0200
commit0f5dff43b7e939d1eadb3db4ff458b113fe03bbe (patch)
tree7195b6ab74435b8fcf2c8596e5172433ab87bfcb /pkgs/development/tools/documentation
parentc73191f11e928d08ce0a154bc8d8f0823ad67a51 (diff)
downloadnixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar.gz
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar.bz2
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar.lz
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar.xz
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.tar.zst
nixpkgs-0f5dff43b7e939d1eadb3db4ff458b113fe03bbe.zip
doxygen: fix finding libiconv after #13856
The changed the build system to cmake, and it somehow won't find the
includes. I'm lazy to investigate details ATM.
Diffstat (limited to 'pkgs/development/tools/documentation')
-rw-r--r--pkgs/development/tools/documentation/doxygen/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix
index 0b16723866b..7373d8584c2 100644
--- a/pkgs/development/tools/documentation/doxygen/default.nix
+++ b/pkgs/development/tools/documentation/doxygen/default.nix
@@ -3,14 +3,14 @@
 stdenv.mkDerivation rec {
 
   name = "doxygen-1.8.11";
-  
+
   src = fetchurl {
     url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
     sha256 = "0ja02pm3fpfhc5dkry00kq8mn141cqvdqqpmms373ncbwi38pl35";
   };
 
   nativeBuildInputs = [ cmake ];
-  
+
   buildInputs =
     [ perl python flex bison ]
     ++ stdenv.lib.optional (qt4 != null) qt4
@@ -18,6 +18,7 @@ stdenv.mkDerivation rec {
     ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
 
   cmakeFlags =
+    [ "-DICONV_INCLUDE_DIR=${libiconv}/include" ] ++
     stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES";
 
   NIX_CFLAGS_COMPILE =