gnome3_16.gexiv2: maintenance update and fix hash

/cc @lethalman.
This commit is contained in:
Vladimír Čunát 2015-05-17 10:26:33 +02:00
parent a546e11e45
commit 3b913df217
1 changed files with 6 additions and 6 deletions

View File

@ -5,24 +5,24 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gexiv2-${version}"; name = "gexiv2-${version}";
version = "${majorVersion}.0"; version = "${majorVersion}.3";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gexiv2/${majorVersion}/${name}.tar.xz"; url = "mirror://gnome/sources/gexiv2/${majorVersion}/${name}.tar.xz";
sha256 = "2fd21f0ed5125e51d02226e7f41be751cfa8ae411a8ed1a651e16b06d79047b2"; sha256 = "390cfb966197fa9f3f32200bc578d7c7f3560358c235e6419657206a362d3988";
}; };
preConfigure = '' preConfigure = ''
patchShebangs . patchShebangs .
''; '';
buildInputs = [ pkgconfig glib libtool m4 ]; buildInputs = [ pkgconfig glib libtool m4 ];
propagatedBuildInputs = [ exiv2 ]; propagatedBuildInputs = [ exiv2 ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Projects/gexiv2; homepage = https://wiki.gnome.org/Projects/gexiv2;
description = "GObject wrapper around the Exiv2 photo metadata library"; description = "GObject wrapper around the Exiv2 photo metadata library";
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.lethalman ]; maintainers = [ maintainers.lethalman ];
}; };
} }