mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
ea9cf69215
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
63 lines
1.2 KiB
Nix
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;
|
|
};
|
|
}
|