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

@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
prefixKey = "-prefix ";
configureFlags = "-ocamlfind ${ocamlPackages.findlib}/bin/ocamlfind ";
configureFlags = [ "-ocamlfind ${ocamlPackages.findlib}/bin/ocamlfind" ];
buildInputs = [ which perl jdk openssl coreutils zlib ncurses
makeWrapper gcc binutils gnumake nodejs

View File

@@ -20,7 +20,11 @@ stdenv.mkDerivation {
hardeningDisable = [ "format" ];
configureFlags = "--with-world --enable-gmp --enable-shared";
configureFlags = [
"--with-world"
"--enable-gmp"
"--enable-shared"
];
buildFlags = "world";

View File

@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
'';
configureFlags = "--with-openssl=${openssl.dev}";
configureFlags = [ "--with-openssl=${openssl.dev}" ];
preConfigure = ''
export PGHEADER="${postgresql}/include/libpq-fe.h";

View File

@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ readline gmp zlib ];
configureFlags = "--enable-tabling=yes";
configureFlags = [ "--enable-tabling=yes" ];
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];