tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
dysnomia: fix syntax error
Eric Seidel
11 years ago
b6a3fd39
ff58ecdc
+8
-8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
package-management
disnix
dysnomia
default.nix
+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
32
-
$(if enableApacheWebApplication then "--with-apache" else "--without-apache")
33
33
-
$(if enableAxis2WebService then "--with-axis2" else "--without-axis2")
34
34
-
$(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
35
35
-
$(if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
36
36
-
$(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
37
37
-
$(if enableSubversionRepository then "--with-subversion" else "--without-subversion")
38
38
-
$(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
39
39
-
$(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
32
32
+
(if enableApacheWebApplication then "--with-apache" else "--without-apache")
33
33
+
(if enableAxis2WebService then "--with-axis2" else "--without-axis2")
34
34
+
(if enableEjabberdDump then "--with-ejabberd" else "--without-ejabberd")
35
35
+
(if enableMySQLDatabase then "--with-mysql" else "--without-mysql")
36
36
+
(if enablePostgreSQLDatabase then "--with-postgresql" else "--without-postgresql")
37
37
+
(if enableSubversionRepository then "--with-subversion" else "--without-subversion")
38
38
+
(if enableTomcatWebApplication then "--with-tomcat=${catalinaBaseDir}" else "--without-tomcat")
39
39
+
(if enableMongoDatabase then "--with-mongodb" else "--without-mongodb")
40
40
"--with-job-template=${jobTemplate}"
41
41
];
42
42