about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-11-27 12:19:01 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-11-27 12:19:01 +0100
commit6345089ca0af23a29387f48060a53dff0d0d30f5 (patch)
treeaa11989838217951662f46c011205e11d525e4dc /pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
parent658951917437e7d587c8a206cc6497a7f1192891 (diff)
parente69a3248f7c8308b0d583941e8f1bb1a99a431a7 (diff)
downloadnixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.gz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.bz2
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.lz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.xz
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.tar.zst
nixlib-6345089ca0af23a29387f48060a53dff0d0d30f5.zip
Merge #29392: gnome3: 3.24 -> 3.26
It might be slightly confusing that a couple of the changes will be twice
in the history, but let's merge this way.
Diffstat (limited to 'pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix')
-rw-r--r--pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
index 618d6152d81f..c13d7e976e5c 100644
--- a/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
+++ b/pkgs/desktops/gnome-3/apps/gnome-calendar/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook
-, intltool, evolution_data_server, sqlite, libxml2, libsoup
+{ stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook
+, gettext, libxml2, gnome3, gtk, evolution_data_server, libsoup
 , glib, gnome_online_accounts, gsettings_desktop_schemas }:
 
 stdenv.mkDerivation rec {
@@ -7,13 +7,17 @@ stdenv.mkDerivation rec {
 
   NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ meson ninja pkgconfig gettext libxml2 wrapGAppsHook ];
   buildInputs = [
-    gtk3 wrapGAppsHook intltool evolution_data_server
-    sqlite libxml2 libsoup glib gnome3.defaultIconTheme gnome_online_accounts
-    gsettings_desktop_schemas
+    gtk evolution_data_server libsoup glib gnome_online_accounts
+    gsettings_desktop_schemas gnome3.defaultIconTheme
   ];
 
+  postPatch = ''
+    chmod +x meson_post_install.py # patchShebangs requires executable file
+    patchShebangs meson_post_install.py
+  '';
+
   meta = with stdenv.lib; {
     homepage = https://wiki.gnome.org/Apps/Calendar;
     description = "Simple and beautiful calendar application for GNOME";