30 lines
915 B
Nix
30 lines
915 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libsoup, tzdata }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmateweather";
|
|
version = "1.22.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1y3z82ymc7q6z8ly9f6nys0hbs373fjnvr6j7zwlgf6zc88f71h3";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig intltool ];
|
|
|
|
buildInputs = [ gtk3 libsoup tzdata ];
|
|
|
|
configureFlags = [
|
|
"--with-zoneinfo-dir=${tzdata}/share/zoneinfo"
|
|
"--enable-locations-compression"
|
|
];
|
|
|
|
preFixup = "rm -f $out/share/icons/mate/icon-theme.cache";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library to access weather information from online services for MATE";
|
|
homepage = https://github.com/mate-desktop/libmateweather;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|