summary refs log tree commit diff
diff options
context:
space:
mode:
authorJascha Geerds <jg@ekby.de>2015-08-13 22:26:44 +0200
committerJascha Geerds <jg@ekby.de>2015-08-13 22:27:39 +0200
commit4df408c8be9477dbd0af2d23dc7d2fecf8c647ed (patch)
tree2e7a0ef2bc0171a2ad4b0683d51f7a60f2868479
parentbc9bd5c02c38d6c5ae5b2e62fd0fe21c767413c7 (diff)
downloadnixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar.gz
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar.bz2
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar.lz
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar.xz
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.tar.zst
nixpkgs-4df408c8be9477dbd0af2d23dc7d2fecf8c647ed.zip
gnome-calendar: init at 3.16.2
-rw-r--r--pkgs/desktops/gnome-3/3.16/apps/gnome-calendar/default.nix27
-rw-r--r--pkgs/desktops/gnome-3/3.16/default.nix4
2 files changed, 30 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-3/3.16/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.16/apps/gnome-calendar/default.nix
new file mode 100644
index 00000000000..043cd694bd4
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.16/apps/gnome-calendar/default.nix
@@ -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;
+  };
+}
diff --git a/pkgs/desktops/gnome-3/3.16/default.nix b/pkgs/desktops/gnome-3/3.16/default.nix
index 3f554dbac1c..4f56077eff8 100644
--- a/pkgs/desktops/gnome-3/3.16/default.nix
+++ b/pkgs/desktops/gnome-3/3.16/default.nix
@@ -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 { };