nixpkgs/pkgs/desktops/mate/libmateweather/default.nix
Bobby Rong ea9cf69215
mate.libmateweather: 1.26.1 -> 1.26.2
https://github.com/mate-desktop/libmateweather/compare/v1.26.1...v1.26.2

While at it:

- Add glib-networking for `Failed to get IWIN forecast data:
  6 TLS/SSL support not available; install glib-networking`
- Add glib and gtk3 to propagatedBuildInputs since they are
  required by mateweather.pc
2023-10-21 19:09:28 +08:00

63 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchurl
, pkg-config
, gettext
, glib
, glib-networking
, libxml2
, gtk3
, libsoup
, tzdata
, mateUpdateScript
}:
stdenv.mkDerivation rec {
pname = "libmateweather";
version = "1.26.2";
src = fetchurl {
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "ylCoFYZlXPU6j5Z2a5zpCk0H7Q/hYr1eFdra3QBgx/Y=";
};
strictDeps = true;
nativeBuildInputs = [
pkg-config
gettext
glib # glib-compile-schemas
libxml2 # xmllint
];
buildInputs = [
libsoup
tzdata
];
propagatedBuildInputs = [
glib
glib-networking # for obtaining IWIN forecast data
gtk3
];
configureFlags = [
"--with-zoneinfo-dir=${tzdata}/share/zoneinfo"
"--enable-locations-compression"
];
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;
maintainers = teams.mate.members;
};
}