treewide: configureFlags is a flat list
This commit is contained in:
@@ -48,31 +48,31 @@ stdenv.mkDerivation rec {
|
||||
"--with-scheduler-ram"
|
||||
"--with-scheduler-stub"
|
||||
|
||||
] ++ stdenv.lib.optional enablePython [
|
||||
] ++ stdenv.lib.optionals enablePython [
|
||||
"--with-python=${python2}"
|
||||
"--with-filter-python"
|
||||
"--with-queue-python"
|
||||
"--with-table-python"
|
||||
"--with-scheduler-python"
|
||||
|
||||
] ++ stdenv.lib.optional enableLua [
|
||||
] ++ stdenv.lib.optionals enableLua [
|
||||
"--with-lua=${pkgconfig}"
|
||||
"--with-filter-lua"
|
||||
|
||||
] ++ stdenv.lib.optional enablePerl [
|
||||
] ++ stdenv.lib.optionals enablePerl [
|
||||
"--with-perl=${perl}"
|
||||
"--with-filter-perl"
|
||||
|
||||
] ++ stdenv.lib.optional enableMysql [
|
||||
] ++ stdenv.lib.optionals enableMysql [
|
||||
"--with-table-mysql"
|
||||
|
||||
] ++ stdenv.lib.optional enablePostgres [
|
||||
] ++ stdenv.lib.optionals enablePostgres [
|
||||
"--with-table-postgres"
|
||||
|
||||
] ++ stdenv.lib.optional enableSqlite [
|
||||
] ++ stdenv.lib.optionals enableSqlite [
|
||||
"--with-table-sqlite"
|
||||
|
||||
] ++ stdenv.lib.optional enableRedis [
|
||||
] ++ stdenv.lib.optionals enableRedis [
|
||||
"--with-table-redis"
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user