nixpkgs/pkgs/development/libraries/exempi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
930 B
Nix
Raw Normal View History

2023-01-19 11:45:09 +00:00
{ lib, stdenv, fetchurl, expat, zlib, boost, libiconv, darwin }:
stdenv.mkDerivation rec {
2019-08-30 18:02:47 +00:00
pname = "exempi";
2023-08-17 06:18:58 +00:00
version = "2.6.4";
src = fetchurl {
2019-08-30 18:02:47 +00:00
url = "https://libopenraw.freedesktop.org/download/${pname}-${version}.tar.bz2";
2023-08-17 06:18:58 +00:00
sha256 = "sha256-p1FJyWth45zcsEb9XlbYjP7qtuCPiU4V6//ZlECSv9A=";
};
2015-07-27 20:04:20 +00:00
configureFlags = [
"--with-boost=${boost.dev}"
] ++ lib.optionals (!doCheck) [
"--enable-unittest=no"
2015-07-27 20:04:20 +00:00
];
2014-10-11 08:51:47 +00:00
2017-04-21 05:10:24 +00:00
buildInputs = [ expat zlib boost ]
++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.CoreServices ];
doCheck = stdenv.isLinux && stdenv.is64bit;
2022-11-19 22:53:53 +00:00
dontDisableStatic = doCheck;
enableParallelBuilding = true;
meta = with lib; {
description = "An implementation of XMP (Adobe's Extensible Metadata Platform)";
homepage = "https://libopenraw.freedesktop.org/exempi/";
2017-04-21 05:10:24 +00:00
platforms = platforms.linux ++ platforms.darwin;
license = licenses.bsd3;
};
}