From 6b71f32fb5985c9495c0164b4a5b9d272eb09a65 Mon Sep 17 00:00:00 2001 From: ndowens Date: Sun, 19 Mar 2017 13:15:40 -0500 Subject: [PATCH] Move intltool to nativeBuildInputs --- pkgs/applications/editors/geany/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 680542cfdfe..3649beb41c6 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -16,8 +16,8 @@ stdenv.mkDerivation rec { NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ gtk2 which intltool file ]; + nativeBuildInputs = [ pkgconfig intltool ]; + buildInputs = [ gtk2 which file ]; doCheck = true;