treewide: Make configureFlags lists
This commit is contained in:
@@ -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)\""'
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0p5nx387857w3v2jbgvps2p6mlm0chajcdw5sfrddcglsxkwvmis";
|
||||
};
|
||||
buildInputs = [motif ncurses libX11 libXt];
|
||||
configureFlags = "--with-x";
|
||||
configureFlags = [ "--with-x" ];
|
||||
|
||||
patches = [ ./gcc44.patch ];
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user