gnome3.five-or-more: 3.30.0 -> 3.32.0

This commit is contained in:
Tor Hedin Brønner 2019-03-11 19:39:25 +01:00 committed by Jan Tojnar
parent 72424f0f22
commit 61f3a2d5fc
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,16 +1,19 @@
{ stdenv, fetchurl, meson, ninja, pkgconfig, gnome3, gtk3, wrapGAppsHook
, librsvg, libgnome-games-support, gettext, itstool, libxml2, python3 }:
, librsvg, libgnome-games-support, gettext, itstool, libxml2, python3, vala }:
stdenv.mkDerivation rec {
name = "five-or-more-${version}";
version = "3.30.0";
version = "3.32.0";
src = fetchurl {
url = "mirror://gnome/sources/five-or-more/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
sha256 = "00d729p251kh96624i7qg2370r5mxwafs016i6hy01vsr71jzb9x";
sha256 = "0v52i22ygv6y4zqs8nyb1qmacmj9whhqrw7qss6vn7by4nsikhrn";
};
nativeBuildInputs = [ meson ninja pkgconfig gettext itstool libxml2 python3 wrapGAppsHook ];
nativeBuildInputs = [
meson ninja pkgconfig gettext itstool libxml2 python3 wrapGAppsHook
vala
];
buildInputs = [
gtk3 librsvg libgnome-games-support gnome3.adwaita-icon-theme
];