2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook, gjs, gobject-introspection
|
2019-04-17 01:38:26 +01:00
|
|
|
, libgweather, meson, ninja, geoclue2, gnome-desktop, python3, gsettings-desktop-schemas }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gnome-weather";
|
2019-09-02 17:45:29 +01:00
|
|
|
version = "3.34.0";
|
2018-02-25 20:07:20 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gnome/sources/gnome-weather/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-09-02 17:45:29 +01:00
|
|
|
sha256 = "1g63xzs17i36if923b36k9fwbk0nqa5vz6zh1k6q2axrzhhpx1i4";
|
2018-02-25 20:07:20 +00:00
|
|
|
};
|
|
|
|
|
2019-03-03 18:56:08 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig meson ninja wrapGAppsHook python3 ];
|
2016-09-18 20:35:23 +01:00
|
|
|
buildInputs = [
|
2018-12-02 11:41:15 +00:00
|
|
|
gtk3 gjs gobject-introspection gnome-desktop
|
2019-04-17 01:38:26 +01:00
|
|
|
libgweather gnome3.adwaita-icon-theme geoclue2 gsettings-desktop-schemas
|
2016-09-18 20:35:23 +01:00
|
|
|
];
|
|
|
|
|
2019-03-03 18:56:08 +00:00
|
|
|
postPatch = ''
|
|
|
|
# The .service file is not wrapped with the correct environment
|
|
|
|
# so misses GIR files when started. By re-pointing from the gjs
|
|
|
|
# entry point to the wrapped binary we get back to a wrapped
|
|
|
|
# binary.
|
|
|
|
substituteInPlace "data/org.gnome.Weather.service.in" \
|
|
|
|
--replace "Exec=@DATA_DIR@/@APP_ID@" \
|
2017-06-25 17:59:23 +01:00
|
|
|
"Exec=$out/bin/gnome-weather"
|
2019-03-03 18:56:08 +00:00
|
|
|
|
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
2017-06-25 17:59:23 +01:00
|
|
|
'';
|
|
|
|
|
2018-03-14 20:53:34 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = "gnome-weather";
|
|
|
|
attrPath = "gnome3.gnome-weather";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://wiki.gnome.org/Apps/Weather;
|
|
|
|
description = "Access current weather conditions and forecasts";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|