summary refs log tree commit diff
path: root/pkgs/applications/editors/zile
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-01-07 17:37:51 +0100
committerLudovic Courtès <ludo@gnu.org>2013-01-07 17:37:51 +0100
commit563416500ebb1f4f9d49b45f0befc4867ec6358b (patch)
treeef331cffa46bea25826a1d5caeb43c91c5b610d5 /pkgs/applications/editors/zile
parent805561e4aa7de17c1a45b45d6666c5adae721286 (diff)
zile: remove `help2man' from the cross-build inputs
Diffstat (limited to 'pkgs/applications/editors/zile')
-rw-r--r--pkgs/applications/editors/zile/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix
index a64561b109964..13a36e258fde6 100644
--- a/pkgs/applications/editors/zile/default.nix
+++ b/pkgs/applications/editors/zile/default.nix
@@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
   buildInputs = [ ncurses boehmgc ];
   buildNativeInputs = [ help2man perl ];
 
+  # `help2man' wants to run Zile, which fails when cross-compiling.
+  crossAttrs.buildNativeInputs = [];
+
   # Tests can't be run because most of them rely on the ability to
   # fiddle with the terminal.
   doCheck = false;