dysnomia: fix syntax error

+8 -8
+8 -8
pkgs/tools/package-management/disnix/dysnomia/default.nix
··· 29 29 preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; 30 30 31 31 configureFlags = [ 32 - $(if enableApacheWebApplication then "--with-apache" else "--without-apache") 33 - $(if enableAxis2WebService then "--with-axis2" else "--without-axis2") 34 - $(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd") 35 - $(if enableMySQLDatabase then "--with-mysql" else "--without-mysql") 36 - $(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql") 37 - $(if enableSubversionRepository then "--with-subversion" else "--without-subversion") 38 - $(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat") 39 - $(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb") 32 + (if enableApacheWebApplication then "--with-apache" else "--without-apache") 33 + (if enableAxis2WebService then "--with-axis2" else "--without-axis2") 34 + (if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd") 35 + (if enableMySQLDatabase then "--with-mysql" else "--without-mysql") 36 + (if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql") 37 + (if enableSubversionRepository then "--with-subversion" else "--without-subversion") 38 + (if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat") 39 + (if enableMongoDatabase then "--with-mongodb" else "--without-mongodb") 40 40 "--with-job-template=${jobTemplate}" 41 41 ]; 42 42