2022-11-21T13:49:30 exempi 2.5.1 -> 2.6.2 https://repology.org/metapackage/exempi/versions 2022-11-21T13:49:32 attrpath: exempi 2022-11-21T13:49:32 Checking auto update branch... 2022-11-21T13:49:32 No auto update branch exists 2022-11-21T13:49:33 Old version 2.5.1" not present in master derivation file with contents: { lib, stdenv, fetchurl, fetchpatch, expat, zlib, boost, libiconv, darwin }: stdenv.mkDerivation rec { pname = "exempi"; version = "2.6.2"; src = fetchurl { url = "https://libopenraw.freedesktop.org/download/${pname}-${version}.tar.bz2"; sha256 = "sha256-TRfUyT3yqV2j4xcsRbelvzF90x2v0cejQBaXKMcInR0="; }; configureFlags = [ "--with-boost=${boost.dev}" ] ++ lib.optionals (!doCheck) [ "--enable-unittest=no" ]; buildInputs = [ expat zlib boost ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.CoreServices ]; doCheck = stdenv.isLinux && stdenv.is64bit; dontDisableStatic = doCheck; meta = with lib; { description = "An implementation of XMP (Adobe's Extensible Metadata Platform)"; homepage = "https://libopenraw.freedesktop.org/wiki/Exempi/"; platforms = platforms.linux ++ platforms.darwin; license = licenses.bsd3; }; }