Skip to content

Commit

Permalink
doxygen: 1.9.8 -> 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan770 authored and pull[bot] committed Jan 28, 2024
1 parent 3835e74 commit 7afed73
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pkgs/development/tools/documentation/doxygen/default.nix
Expand Up @@ -8,18 +8,18 @@
, qt5
, CoreServices
, libiconv
, withSqlite ? true, sqlite
, sqlite
}:

stdenv.mkDerivation rec {
pname = "doxygen";
version = "1.9.8";
version = "1.10.0";

src = fetchFromGitHub {
owner = "doxygen";
repo = "doxygen";
rev = "Release_${lib.replaceStrings [ "." ] [ "_" ] version}";
sha256 = "sha256-uQ1Fl2kmY7qmzy34NOmZCgPxVGwmqRqDvV6yEab5P4w=";
sha256 = "sha256-FPI5ICdn9Tne/g9SP6jAQS813AAyoDNooDR/Hyvq6R4=";
};

nativeBuildInputs = [
Expand All @@ -29,14 +29,14 @@ stdenv.mkDerivation rec {
bison
];

buildInputs = [ libiconv ]
++ lib.optionals withSqlite [ sqlite ]
buildInputs = [ libiconv sqlite ]
++ lib.optionals (qt5 != null) (with qt5; [ qtbase wrapQtAppsHook ])
++ lib.optionals stdenv.isDarwin [ CoreServices ];

cmakeFlags = [ "-DICONV_INCLUDE_DIR=${libiconv}/include" ]
++ lib.optional withSqlite "-Duse_sqlite3=ON"
++ lib.optional (qt5 != null) "-Dbuild_wizard=YES";
cmakeFlags = [
"-DICONV_INCLUDE_DIR=${libiconv}/include"
"-Duse_sys_sqlite3=ON"
] ++ lib.optional (qt5 != null) "-Dbuild_wizard=YES";

env.NIX_CFLAGS_COMPILE =
lib.optionalString stdenv.isDarwin "-mmacosx-version-min=10.9";
Expand Down

0 comments on commit 7afed73

Please sign in to comment.