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

82 lines
1.7 KiB
Nix
Raw Normal View History

2021-10-14 21:46:20 +01:00
{ stdenv
, lib
, fetchurl
, meson
, 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 21:46:20 +01: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 21:46:20 +01:00
sha256 = "5YJ5pv8gtvZPpJlhXaXptXz2W6eFC3L6/fFyIanW1p4=";
};
2021-10-14 21:46:20 +01:00
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
vala
gtk-doc
docbook-xsl-nons
docbook_xml_dtd_43
];
buildInputs = [
glib
# Python binding overrides
python3
python3.pkgs.pygobject3
];
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 21:46:20 +01:00
"-Dpython3_girdir=${placeholder "out"}/${python3.sitePackages}/gi/overrides"
2018-12-25 17:43:33 +00:00
];
doCheck = true;
2021-10-14 21:46:20 +01:00
preCheck = ''
# 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
ln -s $PWD/gexiv2/libgexiv2.so.2 $out/lib/libgexiv2.so.2
'';
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 21:46:20 +01:00
license = licenses.gpl2Plus;
2018-01-30 18:24:52 +00:00
platforms = platforms.unix;
maintainers = teams.gnome.members;
};
}