mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
dysnomia: fix syntax error
This commit is contained in:
parent
ff58ecdce2
commit
b6a3fd396e
@ -29,14 +29,14 @@ stdenv.mkDerivation {
|
||||
preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else "";
|
||||
|
||||
configureFlags = [
|
||||
$(if enableApacheWebApplication then "--with-apache" else "--without-apache")
|
||||
$(if enableAxis2WebService then "--with-axis2" else "--without-axis2")
|
||||
$(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
|
||||
$(if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
|
||||
$(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
|
||||
$(if enableSubversionRepository then "--with-subversion" else "--without-subversion")
|
||||
$(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
|
||||
$(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
|
||||
(if enableApacheWebApplication then "--with-apache" else "--without-apache")
|
||||
(if enableAxis2WebService then "--with-axis2" else "--without-axis2")
|
||||
(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
|
||||
(if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
|
||||
(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
|
||||
(if enableSubversionRepository then "--with-subversion" else "--without-subversion")
|
||||
(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
|
||||
(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
|
||||
"--with-job-template=${jobTemplate}"
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user