Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

72 lines
1.4 KiB
Nix

{
lib,
stdenv,
autoreconfHook,
fetchurl,
pkg-config,
gettext,
glib,
glib-networking,
libxml2,
gtk3,
gtk-doc,
libsoup_3,
tzdata,
mateUpdateScript,
}:
stdenv.mkDerivation rec {
pname = "libmateweather";
version = "1.28.0";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "VUNz3rWzk7nYSydd0spmyaSi0ObskgRPq4qlPjAy0rU=";
};
patches = [
# https://github.com/mate-desktop/libmateweather/pull/133
./libsoup_3_support.patch
];
strictDeps = true;
nativeBuildInputs = [
autoreconfHook # the libsoup patch changes the autoconf file
pkg-config
gettext
glib # glib-compile-schemas
gtk-doc # required for autoconf
libxml2 # xmllint
];
buildInputs = [
libxml2
libsoup_3
tzdata
];
propagatedBuildInputs = [
glib
glib-networking # for obtaining IWIN forecast data
gtk3
];
configureFlags = [
"--with-zoneinfo-dir=${tzdata}/share/zoneinfo"
];
preFixup = "rm -f $out/share/icons/mate/icon-theme.cache";
enableParallelBuilding = true;
passthru.updateScript = mateUpdateScript { inherit pname; };
meta = with lib; {
description = "Library to access weather information from online services for MATE";
homepage = "https://github.com/mate-desktop/libmateweather";
license = licenses.gpl2Plus;
platforms = platforms.unix;
teams = [ teams.mate ];
};
}