summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2018-10-11 10:26:33 +0200
committerGabriel Ebner <gebner@gebner.org>2018-10-11 11:19:51 +0200
commita814322eda88c16d72c5963023ec05777fb8d247 (patch)
tree986692c7612d615874352a05ce0fc86c4d4b79a8 /pkgs
parent3dec3de2d3a89ea212154aaaca4621fb62a16af6 (diff)
downloadnixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar.gz
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar.bz2
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar.lz
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar.xz
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.tar.zst
nixlib-a814322eda88c16d72c5963023ec05777fb8d247.zip
piper: fix gi dependencies
Currently fails with "ValueError: Namespace Gtk not available"
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/piper/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/piper/default.nix b/pkgs/os-specific/linux/piper/default.nix
index 3e774faaffe2..a3ae0b74f126 100644
--- a/pkgs/os-specific/linux/piper/default.nix
+++ b/pkgs/os-specific/linux/piper/default.nix
@@ -1,5 +1,6 @@
 { stdenv, meson, ninja, pkgconfig, gettext, fetchFromGitHub, python3
-, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3 }:
+, wrapGAppsHook, gtk3, glib, desktop-file-utils, appstream-glib, gnome3
+, gobjectIntrospection }:
 
 python3.pkgs.buildPythonApplication rec {
   pname = "piper-${version}";
@@ -14,7 +15,7 @@ python3.pkgs.buildPythonApplication rec {
     sha256 = "1ny0vf8ym9v040cb5h084k5wwn929fnhq9infbdq8f8vvy61magb";
   };
 
-  nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib ];
+  nativeBuildInputs = [ meson ninja gettext pkgconfig wrapGAppsHook desktop-file-utils appstream-glib gobjectIntrospection ];
   buildInputs = [ gtk3 glib gnome3.defaultIconTheme python3 ];
   propagatedBuildInputs = with python3.pkgs; [ lxml evdev pygobject3 ];