summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2017-06-25 17:59:23 +0100
committerTom Hunger <tehunger@gmail.com>2017-08-28 15:32:49 +0100
commitb73e3b6095e5d8d952682d4b868e9ac7f633f0c2 (patch)
treeb4dc3e28424b6c9a7026f96a02b1c81b4f5e2f4f /pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix
parent9eafe6706d119d124d2ef5b34876e8e54e8a7559 (diff)
downloadnixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar.gz
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar.bz2
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar.lz
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar.xz
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.tar.zst
nixpkgs-b73e3b6095e5d8d952682d4b868e9ac7f633f0c2.zip
GNOME: 3.22 -> 3.24
This is a squash commit of the joint work from:

* Jan Tojnar (@jtojnar)
* Linus Heckemann (@lheckemann)
* Ryan Mulligan (@ryantm)
* romildo (@romildo)
* Tom Hunger (@teh)
Diffstat (limited to 'pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix
new file mode 100644
index 00000000000..fbd5d748f5e
--- /dev/null
+++ b/pkgs/desktops/gnome-3/3.24/apps/gnome-calendar/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
+, intltool, evolution_data_server, sqlite, libxml2, libsoup
+, glib, gnome_online_accounts, gsettings_desktop_schemas }:
+
+stdenv.mkDerivation rec {
+  inherit (import ./src.nix fetchurl) name src;
+
+  NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
+
+  buildInputs = [
+    pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server
+    sqlite libxml2 libsoup glib gnome3.defaultIconTheme gnome_online_accounts
+    gsettings_desktop_schemas
+  ];
+
+  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;
+  };
+}