33 lines
942 B
Nix
Raw Normal View History

2021-01-17 09:21:50 +07:00
{ lib, stdenv, fetchurl, pkg-config, gettext, gtk3, libsoup, tzdata }:
2017-08-30 23:56:47 -03:00
stdenv.mkDerivation rec {
pname = "libmateweather";
2020-09-18 12:15:20 -03:00
version = "1.24.1";
2017-08-30 23:56:47 -03:00
src = fetchurl {
2021-01-15 20:21:58 +07:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-09-18 12:15:20 -03:00
sha256 = "02d7c59pami1fzxg73mp6risa9hvsdpgs68f62wkg09nrppzsk4v";
2017-08-30 23:56:47 -03:00
};
2021-01-17 09:21:50 +07:00
nativeBuildInputs = [ pkg-config gettext ];
2017-08-30 23:56:47 -03:00
buildInputs = [ gtk3 libsoup tzdata ];
configureFlags = [
"--with-zoneinfo-dir=${tzdata}/share/zoneinfo"
"--enable-locations-compression"
];
2017-09-01 17:27:24 -03:00
preFixup = "rm -f $out/share/icons/mate/icon-theme.cache";
2020-02-14 18:52:51 -03:00
enableParallelBuilding = true;
meta = with lib; {
2017-08-30 23:56:47 -03:00
description = "Library to access weather information from online services for MATE";
2020-02-12 14:51:19 -03:00
homepage = "https://github.com/mate-desktop/libmateweather";
2017-08-30 23:56:47 -03:00
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}