summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-07-30 04:20:59 +0200
committerJan Tojnar <jtojnar@gmail.com>2017-08-05 13:23:06 +0200
commitec6f8320f4070d82b89c44bc7f9b52484853ee98 (patch)
treed76b21890dd74df04b0914c7f31da04abd308265
parent0a142d311210d0898c538533e377a2696e3e33df (diff)
downloadnixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar.gz
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar.bz2
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar.lz
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar.xz
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.tar.zst
nixpkgs-ec6f8320f4070d82b89c44bc7f9b52484853ee98.zip
polari: unbreak
The build was failing due to missing telepathy_logger dependency,
I added it. Additionally, the connection to server was failing due to
telepathy executables not having an access to dconf, which was fixed
in #26113. Lastly, when I tried running Polari directly, it terminated
with SIGTRAP and the following error:

    (org.gnome.Polari:22998): GLib-GIO-ERROR **: Settings schema 'org.gnome.desktop.interface' is not installed

adding `gnome3.gsettings_desktop_schemas` as a buildInput fixed that.
-rw-r--r--pkgs/desktops/gnome-3/3.22/apps/polari/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/desktops/gnome-3/3.22/apps/polari/default.nix b/pkgs/desktops/gnome-3/3.22/apps/polari/default.nix
index a827831c801..f14a1ef3c47 100644
--- a/pkgs/desktops/gnome-3/3.22/apps/polari/default.nix
+++ b/pkgs/desktops/gnome-3/3.22/apps/polari/default.nix
@@ -1,15 +1,15 @@
 { stdenv, intltool, fetchurl, gdk_pixbuf, adwaita-icon-theme
 , telepathy_glib, gjs, itstool, telepathy_idle, libxml2
 , pkgconfig, gtk3, glib, librsvg, libsecret, libsoup
-, gnome3, wrapGAppsHook }:
+, gnome3, wrapGAppsHook, telepathy_logger }:
 
 stdenv.mkDerivation rec {
   inherit (import ./src.nix fetchurl) name src;
 
-  propagatedUserEnvPkgs = [ telepathy_idle ];
+  propagatedUserEnvPkgs = [ telepathy_idle telepathy_logger ];
 
-  buildInputs = [ pkgconfig gtk3 glib intltool itstool adwaita-icon-theme wrapGAppsHook
-                  telepathy_glib gjs gdk_pixbuf librsvg libxml2 libsecret libsoup ];
+  buildInputs = [ pkgconfig gtk3 glib intltool itstool adwaita-icon-theme wrapGAppsHook gnome3.gsettings_desktop_schemas
+                  telepathy_glib telepathy_logger gjs gdk_pixbuf librsvg libxml2 libsecret libsoup ];
 
   enableParallelBuilding = true;
 
@@ -19,6 +19,5 @@ stdenv.mkDerivation rec {
     maintainers = gnome3.maintainers;
     license = licenses.gpl2;
     platforms = platforms.linux;
-    broken = true;
   };
 }