gnome3.gnome-weather: 3.36.1 → 40.0

This commit is contained in:
Jan Tojnar 2021-03-21 07:47:42 +01:00
parent 933acb7214
commit 8903541c59
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,19 +1,49 @@
{ lib, stdenv, fetchurl, pkg-config, gnome3, gtk3, wrapGAppsHook, gjs, gobject-introspection
, libgweather, meson, ninja, geoclue2, gnome-desktop, python3, gsettings-desktop-schemas }:
{ lib
, stdenv
, fetchurl
, pkg-config
, gnome3
, gtk3
, libhandy
, wrapGAppsHook
, gjs
, gobject-introspection
, libgweather
, meson
, ninja
, geoclue2
, gnome-desktop
, python3
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "gnome-weather";
version = "3.36.1";
version = "40.0";
src = fetchurl {
url = "mirror://gnome/sources/gnome-weather/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "11z75ky6xp9hx7lm24xng7ydr20bzh4d6p9sbi9c8ccz2m3fdrk8";
url = "mirror://gnome/sources/gnome-weather/${lib.versions.major version}/${pname}-${version}.tar.xz";
sha256 = "1vxfcvga5waangq3rzwdrdxyy5sw40vv0l463lc651s0n8xafd9a";
};
nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook python3 ];
nativeBuildInputs = [
pkg-config
meson
ninja
wrapGAppsHook
python3
];
buildInputs = [
gtk3 gjs gobject-introspection gnome-desktop
libgweather gnome3.adwaita-icon-theme geoclue2 gsettings-desktop-schemas
gtk3
libhandy
gjs
gobject-introspection
gnome-desktop
libgweather
gnome3.adwaita-icon-theme
geoclue2
gsettings-desktop-schemas
];
postPatch = ''