exiv2: enable docs and po

Also multiout man
wip/yesman
worldofpeace 5 years ago
parent cb77f7e227
commit 91a3b41967
  1. 17
      pkgs/development/libraries/exiv2/default.nix

@ -7,6 +7,9 @@
, libxml2
, python3
, gettext
, doxygen
, graphviz
, libxslt
}:
stdenv.mkDerivation rec {
@ -25,11 +28,19 @@ stdenv.mkDerivation rec {
./fix-cmake.patch
];
outputs = [ "out" "dev" ];
cmakeFlags = [
"-DEXIV2_BUILD_PO=ON"
"-DEXIV2_BUILD_DOC=ON"
];
outputs = [ "out" "dev" "doc" "man" ];
nativeBuildInputs = [
cmake
doxygen
gettext
graphviz
libxslt
];
propagatedBuildInputs = [
@ -43,6 +54,10 @@ stdenv.mkDerivation rec {
which
];
buildFlags = [
"doc"
];
doCheck = stdenv.isLinux;
# Test setup found by inspecting ${src}/.travis/run.sh; problems without cmake.

Loading…
Cancel
Save