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

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

85 lines
1.9 KiB
Nix
Raw Normal View History

2021-10-14 20:46:20 +00:00
{ stdenv
, lib
, fetchurl
, meson
2022-08-06 22:48:42 +00:00
, mesonEmulatorHook
2021-10-14 20:46:20 +00:00
, ninja
, pkg-config
, exiv2
, glib
, gnome
, gobject-introspection
, vala
, gtk-doc
, docbook-xsl-nons
, docbook_xml_dtd_43
, python3
}:
2018-12-25 17:43:33 +00:00
stdenv.mkDerivation rec {
2018-03-03 01:20:58 +00:00
pname = "gexiv2";
2021-10-14 20:46:20 +00:00
version = "0.14.0";
2018-12-25 17:43:33 +00:00
outputs = [ "out" "dev" "devdoc" ];
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2021-10-14 20:46:20 +00:00
sha256 = "5YJ5pv8gtvZPpJlhXaXptXz2W6eFC3L6/fFyIanW1p4=";
};
2021-10-14 20:46:20 +00:00
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
vala
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
2022-08-06 22:48:42 +00:00
(python3.pythonForBuild.withPackages (ps: [ ps.pygobject3 ]))
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
2021-10-14 20:46:20 +00:00
];
buildInputs = [
glib
];
propagatedBuildInputs = [
exiv2
];
2018-12-25 17:43:33 +00:00
mesonFlags = [
2019-03-03 18:05:40 +00:00
"-Dgtk_doc=true"
2021-10-14 20:46:20 +00:00
"-Dpython3_girdir=${placeholder "out"}/${python3.sitePackages}/gi/overrides"
2018-12-25 17:43:33 +00:00
];
doCheck = true;
2021-11-09 19:52:26 +00:00
preCheck = let
libSuffix = if stdenv.isDarwin then "2.dylib" else "so.2";
in ''
2021-10-14 20:46:20 +00:00
# Our gobject-introspection patches make the shared library paths absolute
# in the GIR files. When running unit tests, the library is not yet installed,
# though, so we need to replace the absolute path with a local one during build.
# We are using a symlink that will be overridden during installation.
mkdir -p $out/lib
2021-11-09 19:52:26 +00:00
ln -s $PWD/gexiv2/libgexiv2.${libSuffix} $out/lib/libgexiv2.${libSuffix}
2021-10-14 20:46:20 +00:00
'';
2018-03-03 01:20:58 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 01:20:58 +00:00
packageName = pname;
versionPolicy = "odd-unstable";
2018-03-03 01:20:58 +00:00
};
};
meta = with lib; {
homepage = "https://wiki.gnome.org/Projects/gexiv2";
description = "GObject wrapper around the Exiv2 photo metadata library";
2021-10-14 20:46:20 +00:00
license = licenses.gpl2Plus;
2018-01-30 18:24:52 +00:00
platforms = platforms.unix;
maintainers = teams.gnome.members;
};
}