exiv2: enable docs and po
Also multiout man
This commit is contained in:
parent
cb77f7e227
commit
91a3b41967
@ -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…
Reference in New Issue
Block a user