treewide: Make configureFlags lists

This commit is contained in:
John Ericson
2018-07-25 17:44:21 -04:00
parent 85a9913edd
commit db965063b3
164 changed files with 380 additions and 263 deletions

View File

@@ -13,7 +13,7 @@ python2Packages.buildPythonApplication {
nativeBuildInputs = [ intltool pkgconfig ];
buildInputs = [ libxslt ];
configureFlags = "--disable-scrollkeeper";
configureFlags = [ "--disable-scrollkeeper" ];
preBuild = ''
substituteInPlace xml2po/xml2po/Makefile --replace '-e "s+^#!.*python.*+#!$(PYTHON)+"' '-e "s\"^#!.*python.*\"#!$(PYTHON)\""'

View File

@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "1byk29rcpyygrnr03h5j3y8j0aqxldd9dr5ihi9q982sy28x12a8";
};
configureFlags = "--with-ncurses=${ncurses.dev}";
configureFlags = [ "--with-ncurses=${ncurses.dev}" ];
buildInputs = [ ncurses ];
nativeBuildInputs = stdenv.lib.optional emacsSupport emacs;

View File

@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
sha256 = "0p5nx387857w3v2jbgvps2p6mlm0chajcdw5sfrddcglsxkwvmis";
};
buildInputs = [motif ncurses libX11 libXt];
configureFlags = "--with-x";
configureFlags = [ "--with-x" ];
patches = [ ./gcc44.patch ];

View File

@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
doCheck = false;
configureFlags = "--with-syscmd-shell=${stdenv.shell}";
configureFlags = [ "--with-syscmd-shell=${stdenv.shell}" ];
# Upstream is aware of it; it may be in the next release.
patches = [ ./s_isdir.patch ] ++ stdenv.lib.optional hostPlatform.isDarwin stdenv.secure-format-patch;

View File

@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ pcre ];
configureFlags = "--without-tcl";
configureFlags = [ "--without-tcl" ];
postPatch = ''
# Disable ccache documentation as it need yodl

View File

@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ pcre ];
configureFlags = "--without-tcl";
configureFlags = [ "--without-tcl" ];
postPatch = ''
# Disable ccache documentation as it need yodl

View File

@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
# 'make check' uses boost and tcl
buildInputs = stdenv.lib.optionals doCheck [ boost tcl ];
configureFlags = "--disable-ccache";
configureFlags = [ "--disable-ccache" ];
meta = {
description = "Interface compiler that connects C/C++ code to higher-level languages";