exempi: 2.5.1 → 2.6.2

This commit is contained in:
Fabián Heredia Montiel 2022-11-19 16:53:53 -06:00
parent e9b195248c
commit 549e76f7a4
2 changed files with 4 additions and 7 deletions

View File

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "exempi";
version = "2.5.1";
version = "2.6.2";
src = fetchurl {
url = "https://libopenraw.freedesktop.org/download/${pname}-${version}.tar.bz2";
sha256 = "07i29xmg8bqriviaf4vi1mwha4lrw85kfla29cfym14fp3z8aqa0";
sha256 = "sha256-TRfUyT3yqV2j4xcsRbelvzF90x2v0cejQBaXKMcInR0=";
};
configureFlags = [
@ -19,6 +19,7 @@ stdenv.mkDerivation rec {
++ 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)";

View File

@ -6466,11 +6466,7 @@ with pkgs;
exactaudiocopy = callPackage ../applications/audio/exact-audio-copy { };
exempi = callPackage ../development/libraries/exempi {
stdenv = if stdenv.isDarwin then stdenv
else gcc9Stdenv;
boost = if stdenv.isDarwin then boost else boost15x;
};
exempi = callPackage ../development/libraries/exempi { };
executor = with python3Packages; toPythonApplication executor;