Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02: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 ];
};
}