gnome-calendar: init at 3.16.2

This commit is contained in:
Jascha Geerds 2015-08-13 22:26:44 +02:00
parent bc9bd5c02c
commit 4df408c8be
2 changed files with 30 additions and 1 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
, intltool, evolution_data_server, sqlite, libxml2, libsoup
, glib }:
stdenv.mkDerivation rec {
name = "gnome-calendar-${gnome3.version}.2";
src = fetchurl {
url = "mirror://gnome/sources/gnome-calendar/${gnome3.version}/${name}.tar.xz";
sha256 = "0vqwps86whf8jgq7q4hdrbnmlaxppgrfa3j7n6ddpqzkb3gf2c5m";
};
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";
buildInputs = [
pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server
sqlite libxml2 libsoup glib
];
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Calendar;
description = "Simple and beautiful calendar application for GNOME";
maintainers = gnome3.maintainers;
license = licenses.gpl3;
platforms = platforms.linux;
};
}

View File

@ -31,7 +31,7 @@ let
gnome_terminal gnome-user-docs bijiben evolution file-roller gedit
gnome-clocks gnome-music gnome-tweak-tool gnome-photos
nautilus-sendto dconf-editor vinagre gnome-weather gnome-logs
gnome-maps gnome-characters
gnome-maps gnome-characters gnome-calendar
];
gamesPackages = with gnome3; [ swell-foop lightsoff iagno
@ -269,6 +269,8 @@ let
spice_gtk = pkgs.spice_gtk.override { enableGTK3 = true; };
};
gnome-calendar = callPackage ./apps/gnome-calendar { };
gnome-characters = callPackage ./apps/gnome-characters { };
gnome-clocks = callPackage ./apps/gnome-clocks { };