aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/editors/zile
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-05 18:03:42 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-21 15:49:54 -0400
commitf8a18cd4cf2e3d249fede58e0b7cc0aea06e3bc1 (patch)
treee853e7da55b09acd1d622991491c1a696f9857ef /pkgs/applications/editors/zile
parent531e4b80c97002a542beb8fe356177ebd66cdd8e (diff)
misc pkgs: Manual fixup pkgconfig nativeBuildInputs after sed
Importantly, this included regenerating pkgs/servers/x11/xorg, to clobber the old sed.
Diffstat (limited to 'pkgs/applications/editors/zile')
-rw-r--r--pkgs/applications/editors/zile/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/zile/default.nix b/pkgs/applications/editors/zile/default.nix
index 73bdb8bcbf3..9274eb6889d 100644
--- a/pkgs/applications/editors/zile/default.nix
+++ b/pkgs/applications/editors/zile/default.nix
@@ -8,15 +8,15 @@ stdenv.mkDerivation rec {
sha256 = "03mcg0bxkzprlsx8y6h22w924pzx4a9zr7zm3g11j8j3x9lz75f7";
};
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ ncurses boehmgc ];
- nativeBuildInputs = [ perl ]
+ nativeBuildInputs = [ pkgconfig perl ]
# `help2man' wants to run Zile, which won't work when the
# newly-produced binary can't be run at build-time.
++ stdenv.lib.optional
(stdenv.hostPlatform == stdenv.buildPlatform)
help2man;
+ buildInputs = [ ncurses boehmgc ];
+
# Tests can't be run because most of them rely on the ability to
# fiddle with the terminal.
doCheck = false;