libmateweather: init at 1.18.1
This commit is contained in:
parent
20f3dfd579
commit
dd3703e166
@ -12,6 +12,7 @@ rec {
|
|||||||
eom = callPackage ./eom { };
|
eom = callPackage ./eom { };
|
||||||
libmatekbd = callPackage ./libmatekbd { };
|
libmatekbd = callPackage ./libmatekbd { };
|
||||||
libmatemixer = callPackage ./libmatemixer { };
|
libmatemixer = callPackage ./libmatemixer { };
|
||||||
|
libmateweather = callPackage ./libmateweather { };
|
||||||
mate-common = callPackage ./mate-common { };
|
mate-common = callPackage ./mate-common { };
|
||||||
mate-desktop = callPackage ./mate-desktop { };
|
mate-desktop = callPackage ./mate-desktop { };
|
||||||
mate-icon-theme = callPackage ./mate-icon-theme { };
|
mate-icon-theme = callPackage ./mate-icon-theme { };
|
||||||
@ -24,6 +25,7 @@ rec {
|
|||||||
caja
|
caja
|
||||||
libmatekbd
|
libmatekbd
|
||||||
libmatemixer
|
libmatemixer
|
||||||
|
libmateweather
|
||||||
mate-common
|
mate-common
|
||||||
mate-desktop
|
mate-desktop
|
||||||
mate-icon-theme
|
mate-icon-theme
|
||||||
|
30
pkgs/desktops/mate/libmateweather/default.nix
Normal file
30
pkgs/desktops/mate/libmateweather/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libsoup, tzdata }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libmateweather-${version}";
|
||||||
|
version = "${major-ver}.${minor-ver}";
|
||||||
|
major-ver = "1.18";
|
||||||
|
minor-ver = "1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||||
|
sha256 = "0z6vfh42fv9rqjrraqfpf6h9nd9h662bxy3l3r48j19xvxrwmx3a";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig intltool ];
|
||||||
|
|
||||||
|
buildInputs = [ gtk3 libsoup tzdata ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--with-zoneinfo-dir=${tzdata}/share/zoneinfo"
|
||||||
|
"--enable-locations-compression"
|
||||||
|
];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user