summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-04-24 21:26:37 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-04-24 21:53:11 +0200
commitd48e9ff92a111482676504ff244663ca049ec841 (patch)
treeb7739d244042a4929e34c8ba23a4e3868f149a70 /pkgs
parentab92a474a9e38c5edb8ece0dd6774d966cd4557d (diff)
downloadnixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar.gz
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar.bz2
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar.lz
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar.xz
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.tar.zst
nixpkgs-d48e9ff92a111482676504ff244663ca049ec841.zip
liblouis: mark as broken
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/orca/default.nix3
-rw-r--r--pkgs/development/libraries/liblouis/default.nix1
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/misc/orca/default.nix b/pkgs/applications/misc/orca/default.nix
index abc8c3e7842..3abefae9c6b 100644
--- a/pkgs/applications/misc/orca/default.nix
+++ b/pkgs/applications/misc/orca/default.nix
@@ -34,7 +34,8 @@ in buildPythonApplication rec {
   ];
 
   propagatedBuildInputs = [
-    pygobject3 pyatspi dbus-python pyxdg brltty liblouis speechd gst-python setproctitle
+    # TODO: re-add liblouis when it is fixed
+    pygobject3 pyatspi dbus-python pyxdg brltty speechd gst-python setproctitle
   ];
 
   buildInputs = [
diff --git a/pkgs/development/libraries/liblouis/default.nix b/pkgs/development/libraries/liblouis/default.nix
index bde1ff4e493..a6005d66b4d 100644
--- a/pkgs/development/libraries/liblouis/default.nix
+++ b/pkgs/development/libraries/liblouis/default.nix
@@ -50,6 +50,7 @@ in stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Open-source braille translator and back-translator";
     homepage = http://liblouis.org/;
+    broken = true;
     license = licenses.lgpl21;
     maintainers = with maintainers; [ jtojnar ];
     platforms = platforms.unix;