2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv
|
2020-04-24 23:36:52 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, zlib
|
|
|
|
, expat
|
|
|
|
, cmake
|
|
|
|
, which
|
|
|
|
, libxml2
|
|
|
|
, python3
|
|
|
|
, gettext
|
|
|
|
, doxygen
|
|
|
|
, graphviz
|
|
|
|
, libxslt
|
2021-07-18 21:22:44 +00:00
|
|
|
, libiconv
|
2022-02-20 05:27:41 +00:00
|
|
|
, removeReferencesTo
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "exiv2";
|
2023-05-24 13:37:59 +00:00
|
|
|
version = "0.27.7";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "doc" "man" "static" ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "exiv2";
|
|
|
|
repo = "exiv2";
|
|
|
|
rev = "v${version}";
|
2023-05-24 13:37:59 +00:00
|
|
|
sha256 = "sha256-xytVGrLDS22n2/yydFTT6CsDESmhO9mFbPGX4yk+b6g=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
doxygen
|
|
|
|
gettext
|
|
|
|
graphviz
|
|
|
|
libxslt
|
2022-02-20 05:27:41 +00:00
|
|
|
removeReferencesTo
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-07-18 21:22:44 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin libiconv;
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
expat
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2020-04-24 23:36:52 +00:00
|
|
|
libxml2.bin
|
|
|
|
python3
|
|
|
|
which
|
|
|
|
];
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DEXIV2_ENABLE_NLS=ON"
|
|
|
|
"-DEXIV2_BUILD_DOC=ON"
|
2022-03-30 09:31:56 +00:00
|
|
|
"-DEXIV2_ENABLE_BMFF=ON"
|
2020-09-25 04:45:31 +00:00
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
buildFlags = [
|
2020-09-25 04:45:31 +00:00
|
|
|
"all"
|
2020-04-24 23:36:52 +00:00
|
|
|
"doc"
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
patchShebangs ../test/
|
|
|
|
mkdir ../test/tmp
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
${lib.optionalString stdenv.hostPlatform.isAarch ''
|
2020-05-15 21:57:56 +00:00
|
|
|
# Fix tests on arm
|
|
|
|
# https://github.com/Exiv2/exiv2/issues/933
|
2020-04-24 23:36:52 +00:00
|
|
|
rm -f ../tests/bugfixes/github/test_CVE_2018_12265.py
|
|
|
|
''}
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
${lib.optionalString stdenv.isDarwin ''
|
2020-09-25 04:45:31 +00:00
|
|
|
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD/lib
|
2020-04-24 23:36:52 +00:00
|
|
|
# Removing tests depending on charset conversion
|
|
|
|
substituteInPlace ../test/Makefile --replace "conversions.sh" ""
|
|
|
|
rm -f ../tests/bugfixes/redmine/test_issue_460.py
|
|
|
|
rm -f ../tests/bugfixes/redmine/test_issue_662.py
|
2020-09-25 04:45:31 +00:00
|
|
|
rm -f ../tests/bugfixes/github/test_issue_1046.py
|
2021-12-26 17:43:05 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
rm ../tests/bugfixes/redmine/test_issue_683.py
|
|
|
|
|
2021-12-26 17:43:05 +00:00
|
|
|
# disable tests that requires loopback networking
|
|
|
|
substituteInPlace ../tests/bash_tests/testcases.py \
|
|
|
|
--replace "def io_test(self):" "def io_disabled(self):"
|
2020-04-24 23:36:52 +00:00
|
|
|
''}
|
2022-08-12 12:06:08 +00:00
|
|
|
'' + lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) ''
|
|
|
|
export LC_ALL=C
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
# With CMake we have to enable samples or there won't be
|
2020-04-24 23:36:52 +00:00
|
|
|
# a tests target. This removes them.
|
|
|
|
postInstall = ''
|
|
|
|
( cd "$out/bin"
|
|
|
|
mv exiv2 .exiv2
|
|
|
|
rm *
|
|
|
|
mv .exiv2 exiv2
|
|
|
|
)
|
2022-02-20 05:27:41 +00:00
|
|
|
|
|
|
|
mkdir -p $static/lib
|
|
|
|
mv $lib/lib/*.a $static/lib/
|
|
|
|
|
|
|
|
remove-references-to -t ${stdenv.cc.cc} $lib/lib/*.so.*.*.* $out/bin/exiv2 $static/lib/*.a
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace "$dev"/lib/cmake/exiv2/exiv2Config.cmake --replace \
|
|
|
|
"set(_IMPORT_PREFIX \"$out\")" \
|
|
|
|
"set(_IMPORT_PREFIX \"$static\")"
|
|
|
|
substituteInPlace "$dev"/lib/cmake/exiv2/exiv2Config-*.cmake --replace \
|
|
|
|
"$lib/lib/libexiv2-xmp.a" \
|
|
|
|
"$static/lib/libexiv2-xmp.a"
|
|
|
|
'';
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
disallowedReferences = [ stdenv.cc.cc ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2022-08-12 12:06:08 +00:00
|
|
|
homepage = "https://exiv2.org";
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "A library and command-line utility to manage image metadata";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl2Plus;
|
2022-08-12 12:06:08 +00:00
|
|
|
maintainers = with maintainers; [ wegank ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|