about summary refs log tree commit diff
path: root/pkgs/applications/editors/rednotebook
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-07-25 23:40:43 +0000
committerOrivej Desh <orivej@gmx.fr>2019-08-03 13:37:43 +0000
commitda66614cb05b20172c068603c010f32536e6b6a4 (patch)
tree4c1bcacc592274f89248ff9952234246213f907d /pkgs/applications/editors/rednotebook
parent63445c00d415f6b87a37e03928d98253e965076b (diff)
downloadnixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar.gz
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar.bz2
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar.lz
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar.xz
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.tar.zst
nixlib-da66614cb05b20172c068603c010f32536e6b6a4.zip
rednotebook: fix "Namespace Gtk not available" error
gobject-introspection setup hook looks at the packages at $hostOffset to
populate GI_TYPELIB_PATH. We need gtk3 to be there.
Diffstat (limited to 'pkgs/applications/editors/rednotebook')
-rw-r--r--pkgs/applications/editors/rednotebook/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix
index 1b53bb7e7f06..8e118c9e9ac7 100644
--- a/pkgs/applications/editors/rednotebook/default.nix
+++ b/pkgs/applications/editors/rednotebook/default.nix
@@ -30,6 +30,10 @@ buildPythonApplication rec {
     "--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
   ];
 
+  # Until gobject-introspection in nativeBuildInputs is supported.
+  # https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643
+  strictDeps = false;
+
   meta = with lib; {
     homepage = http://rednotebook.sourceforge.net/;
     description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";