gnome.gnome-clocks: 41.0 → 42.beta

https://gitlab.gnome.org/GNOME/gnome-clocks/-/compare/41.0...42.beta
This commit is contained in:
Jan Tojnar 2022-02-16 18:34:30 +00:00
parent c88681ec73
commit 0e3949a777

View File

@ -1,4 +1,5 @@
{ lib, stdenv { stdenv
, lib
, fetchurl , fetchurl
, meson , meson
, ninja , ninja
@ -7,35 +8,34 @@
, wrapGAppsHook , wrapGAppsHook
, itstool , itstool
, desktop-file-utils , desktop-file-utils
, vala , vala_0_56
, gobject-introspection , gobject-introspection
, libxml2 , libxml2
, gtk3 , gtk4
, glib , glib
, gsound , gsound
, sound-theme-freedesktop , sound-theme-freedesktop
, gsettings-desktop-schemas , gsettings-desktop-schemas
, adwaita-icon-theme
, gnome-desktop , gnome-desktop
, geocode-glib , geocode-glib
, gnome , gnome
, gdk-pixbuf , gdk-pixbuf
, geoclue2 , geoclue2
, libgweather , libgweather
, libhandy , libadwaita
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "gnome-clocks"; pname = "gnome-clocks";
version = "41.0"; version = "42.beta";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gnome-clocks/${lib.versions.major version}/${pname}-${version}.tar.xz"; url = "mirror://gnome/sources/gnome-clocks/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "34yLBKuS+mGPXe5RGFce+fyeilt5XqAKNcbcZ3ywLaw="; sha256 = "gZriRRfuGnNe4w5ntHgp1x3b40eC1lyIPJxj0+xwW9g=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
vala vala_0_56
meson meson
ninja ninja
pkg-config pkg-config
@ -48,17 +48,16 @@ stdenv.mkDerivation rec {
]; ];
buildInputs = [ buildInputs = [
gtk3 gtk4
glib glib
gsettings-desktop-schemas gsettings-desktop-schemas
gdk-pixbuf gdk-pixbuf
adwaita-icon-theme
gnome-desktop gnome-desktop
geocode-glib geocode-glib
geoclue2 geoclue2
libgweather libgweather
gsound gsound
libhandy libadwaita
]; ];
preFixup = '' preFixup = ''
@ -81,7 +80,7 @@ stdenv.mkDerivation rec {
homepage = "https://wiki.gnome.org/Apps/Clocks"; homepage = "https://wiki.gnome.org/Apps/Clocks";
description = "Clock application designed for GNOME 3"; description = "Clock application designed for GNOME 3";
maintainers = teams.gnome.members; maintainers = teams.gnome.members;
license = licenses.gpl2; license = licenses.gpl2Plus;
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }