gnome3.libgee: 0.18 → 0.20

This commit is contained in:
Jan Tojnar 2017-09-18 23:51:11 +02:00
parent a982b20c36
commit cd2f6220bc
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, autoconf, vala_0_32, pkgconfig, glib, gobjectIntrospection, gnome3 }: { stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }:
let let
ver_maj = "0.18"; ver_maj = "0.20";
ver_min = "0"; ver_min = "0";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -8,15 +8,15 @@ stdenv.mkDerivation rec {
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz"; url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz";
sha256 = "16a34js81w9m2bw4qd8csm4pcgr3zq5z87867j4b8wfh6zwrxnaa"; sha256 = "1fy24dr8imrjlmsqj1syn0gi139gba6hwk3j5vd6sr3pxniqnc11";
}; };
doCheck = true; doCheck = true;
patches = [ ./fix_introspection_paths.patch ]; patches = [ ./fix_introspection_paths.patch ];
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig autoconf vala pkgconfig gobjectIntrospection ];
buildInputs = [ autoconf vala_0_32 glib gobjectIntrospection ]; buildInputs = [ glib ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures"; description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";