c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
77 lines
1.7 KiB
Nix
77 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, pkg-config
|
|
, gnome
|
|
, gtk4
|
|
, libadwaita
|
|
, wrapGAppsHook4
|
|
, gjs
|
|
, gobject-introspection
|
|
, libgweather
|
|
, meson
|
|
, ninja
|
|
, geoclue2
|
|
, python3
|
|
, gsettings-desktop-schemas
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-weather";
|
|
version = "43.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gnome-weather/${lib.versions.major version}/${pname}-${version}.tar.xz";
|
|
sha256 = "LxERf3VVK/G7ngHwHPs8L82mo/aQcP/gUZoHYVMrjyY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
wrapGAppsHook4
|
|
python3
|
|
gobject-introspection
|
|
gjs
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
gjs
|
|
libgweather
|
|
gnome.adwaita-icon-theme
|
|
geoclue2
|
|
gsettings-desktop-schemas
|
|
];
|
|
|
|
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@" \
|
|
"Exec=$out/bin/gnome-weather"
|
|
|
|
chmod +x meson_post_install.py
|
|
patchShebangs meson_post_install.py
|
|
substituteInPlace meson_post_install.py \
|
|
--replace gtk-update-icon-cache gtk4-update-icon-cache
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "gnome-weather";
|
|
attrPath = "gnome.gnome-weather";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://wiki.gnome.org/Apps/Weather";
|
|
description = "Access current weather conditions and forecasts";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|