gnome3.gexiv2: 0.10.6 → 0.10.7

This commit is contained in:
Jan Tojnar 2018-01-30 19:24:52 +01:00
parent e621f17274
commit effa9e4045
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,29 +1,37 @@
{ stdenv, fetchurl, pkgconfig, exiv2, glib, libtool, m4, gnome3 }:
{ stdenv, fetchurl, meson, ninja, pkgconfig, exiv2, glib, gnome3 }:
let
majorVersion = "0.10";
in
stdenv.mkDerivation rec {
name = "gexiv2-${version}";
version = "${majorVersion}.6";
version = "${majorVersion}.7";
src = fetchurl {
url = "mirror://gnome/sources/gexiv2/${majorVersion}/${name}.tar.xz";
sha256 = "09aqsnpah71p9gx0ap2px2dyanrs7jmkkar6q114n9b7js8qh9qk";
sha256 = "1f7312zygw77ml37i5qilhfvmjm59dn753ax71rcb2jm1p76vgcb";
};
patches = [
# https://bugzilla.gnome.org/show_bug.cgi?id=791941
(fetchurl {
url = https://bugzilla.gnome.org/attachment.cgi?id=365969;
sha256 = "06w744acgnz3hym7sm8c245yzlg05ldkmwgiz3yz4pp6h72brizj";
})
];
preConfigure = ''
patchShebangs .
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ glib libtool m4 ];
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ glib ];
propagatedBuildInputs = [ exiv2 ];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/gexiv2;
description = "GObject wrapper around the Exiv2 photo metadata library";
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = gnome3.maintainers;
};
}