2023-09-04 22:18:18 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2019-06-27 07:16:46 +00:00
|
|
|
, fetchFromGitHub
|
2023-11-08 19:26:10 +00:00
|
|
|
, fetchpatch
|
2019-06-27 07:16:46 +00:00
|
|
|
, cmake
|
2019-06-27 07:17:57 +00:00
|
|
|
, doxygen
|
2023-09-04 22:18:18 +00:00
|
|
|
, gettext
|
2019-06-27 07:17:57 +00:00
|
|
|
, graphviz
|
|
|
|
, libxslt
|
2021-07-28 19:06:16 +00:00
|
|
|
, removeReferencesTo
|
2023-09-04 22:18:18 +00:00
|
|
|
, libiconv
|
|
|
|
, brotli
|
|
|
|
, expat
|
|
|
|
, inih
|
|
|
|
, zlib
|
|
|
|
, libxml2
|
|
|
|
, python3
|
|
|
|
, which
|
2019-06-27 07:16:46 +00:00
|
|
|
}:
|
2007-10-01 15:12:41 +00:00
|
|
|
|
2009-04-01 09:04:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-27 07:16:46 +00:00
|
|
|
pname = "exiv2";
|
2023-11-08 19:26:10 +00:00
|
|
|
version = "0.28.1";
|
2015-02-05 11:16:25 +00:00
|
|
|
|
2023-09-04 22:18:18 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "doc" "man" ];
|
2020-09-04 23:12:08 +00:00
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
src = fetchFromGitHub {
|
2018-08-04 17:38:22 +00:00
|
|
|
owner = "exiv2";
|
2023-09-04 22:18:18 +00:00
|
|
|
repo = "exiv2";
|
2019-08-25 16:49:35 +00:00
|
|
|
rev = "v${version}";
|
2023-11-08 19:26:10 +00:00
|
|
|
hash = "sha256-Jim8vYWyCa16LAJ1GuP8cCzhXIc2ouo6hVsHg3UQbdg=";
|
2009-04-01 09:04:01 +00:00
|
|
|
};
|
2017-12-09 17:44:02 +00:00
|
|
|
|
2023-11-08 19:26:10 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/Exiv2/exiv2/commit/c351c7cce317571934abf693055779a59df30d6e.patch";
|
|
|
|
hash = "sha256-fWJT4IUBrAELl6ku0M1iTzGFX74le8Z0UzTJLU/gYls=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-08-04 17:38:22 +00:00
|
|
|
nativeBuildInputs = [
|
2019-06-27 07:16:46 +00:00
|
|
|
cmake
|
2019-06-27 07:17:57 +00:00
|
|
|
doxygen
|
2018-08-04 17:38:22 +00:00
|
|
|
gettext
|
2019-06-27 07:17:57 +00:00
|
|
|
graphviz
|
|
|
|
libxslt
|
2021-07-28 19:06:16 +00:00
|
|
|
removeReferencesTo
|
2018-08-04 17:38:22 +00:00
|
|
|
];
|
2019-06-27 07:16:46 +00:00
|
|
|
|
2023-09-04 22:18:18 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv
|
|
|
|
];
|
2021-07-17 12:04:41 +00:00
|
|
|
|
2019-06-27 07:16:46 +00:00
|
|
|
propagatedBuildInputs = [
|
2023-09-04 22:18:18 +00:00
|
|
|
brotli
|
2019-06-27 07:16:46 +00:00
|
|
|
expat
|
2023-09-04 22:18:18 +00:00
|
|
|
inih
|
2019-06-27 07:16:46 +00:00
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2019-06-27 07:16:46 +00:00
|
|
|
libxml2.bin
|
|
|
|
python3
|
|
|
|
which
|
|
|
|
];
|
|
|
|
|
2020-09-04 23:12:08 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DEXIV2_ENABLE_NLS=ON"
|
|
|
|
"-DEXIV2_BUILD_DOC=ON"
|
2022-01-01 21:38:05 +00:00
|
|
|
"-DEXIV2_ENABLE_BMFF=ON"
|
2020-09-04 23:12:08 +00:00
|
|
|
];
|
|
|
|
|
2019-06-27 07:17:57 +00:00
|
|
|
buildFlags = [
|
2020-09-04 23:12:08 +00:00
|
|
|
"all"
|
2019-06-27 07:17:57 +00:00
|
|
|
"doc"
|
|
|
|
];
|
|
|
|
|
2023-11-08 19:26:10 +00:00
|
|
|
doCheck = true;
|
2019-08-26 10:02:45 +00:00
|
|
|
|
2019-06-27 07:16:46 +00:00
|
|
|
preCheck = ''
|
|
|
|
patchShebangs ../test/
|
|
|
|
mkdir ../test/tmp
|
2023-09-04 22:18:18 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isAarch32 ''
|
|
|
|
# Fix tests on arm
|
|
|
|
# https://github.com/Exiv2/exiv2/issues/933
|
|
|
|
rm -f ../tests/bugfixes/github/test_CVE_2018_12265.py
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD/lib
|
2022-08-02 20:51:04 +00:00
|
|
|
export LC_ALL=C
|
2019-06-27 07:16:46 +00:00
|
|
|
|
2023-09-04 22:18:18 +00:00
|
|
|
# disable tests that requires loopback networking
|
|
|
|
substituteInPlace ../tests/bash_tests/testcases.py \
|
|
|
|
--replace "def io_test(self):" "def io_disabled(self):"
|
2019-06-27 07:16:46 +00:00
|
|
|
'';
|
|
|
|
|
2023-09-04 22:18:18 +00:00
|
|
|
preFixup = ''
|
|
|
|
remove-references-to -t ${stdenv.cc.cc} $lib/lib/*.so.*.*.* $out/bin/exiv2 $static/lib/*.a
|
2022-02-20 16:56:01 +00:00
|
|
|
'';
|
|
|
|
|
2021-07-28 19:06:16 +00:00
|
|
|
disallowedReferences = [ stdenv.cc.cc ];
|
|
|
|
|
2023-09-04 22:18:18 +00:00
|
|
|
# causes redefinition of _FORTIFY_SOURCE
|
|
|
|
hardeningDisable = [ "fortify3" ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2022-08-07 21:50:47 +00:00
|
|
|
homepage = "https://exiv2.org";
|
2009-04-01 09:04:01 +00:00
|
|
|
description = "A library and command-line utility to manage image metadata";
|
2018-08-05 18:14:27 +00:00
|
|
|
platforms = platforms.all;
|
2018-08-06 10:04:52 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2022-08-02 20:51:04 +00:00
|
|
|
maintainers = with maintainers; [ wegank ];
|
2009-04-01 09:04:01 +00:00
|
|
|
};
|
2007-10-01 15:12:41 +00:00
|
|
|
}
|