nixpkgs/pkgs/desktops/mate/libmateweather/default.nix

33 lines
949 B
Nix
Raw Normal View History

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