dysnomia: fix syntax error

This commit is contained in:
Eric Seidel 2015-03-05 13:00:50 -08:00
parent ff58ecdce2
commit b6a3fd396e

View File

@ -29,14 +29,14 @@ stdenv.mkDerivation {
preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else "";
configureFlags = [ configureFlags = [
$(if enableApacheWebApplication then "--with-apache" else "--without-apache") (if enableApacheWebApplication then "--with-apache" else "--without-apache")
$(if enableAxis2WebService then "--with-axis2" else "--without-axis2") (if enableAxis2WebService then "--with-axis2" else "--without-axis2")
$(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd") (if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
$(if enableMySQLDatabase then "--with-mysql" else "--without-mysql") (if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
$(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql") (if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
$(if enableSubversionRepository then "--with-subversion" else "--without-subversion") (if enableSubversionRepository then "--with-subversion" else "--without-subversion")
$(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat") (if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
$(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb") (if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
"--with-job-template=${jobTemplate}" "--with-job-template=${jobTemplate}"
]; ];