* Added some missing semicolons.
* Some packages needed for the Subversion server. svn path=/nixpkgs/trunk/; revision=586
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
|
||||
buildinputs="$openssl $db4 $httpd $swig $expat"
|
||||
buildinputs="$openssl $db4 $httpd $swig $python $expat"
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
if test $localServer; then
|
||||
|
||||
@@ -10,7 +10,7 @@ assert !isNull expat;
|
||||
assert localServer -> !isNull db4;
|
||||
assert httpServer -> !isNull httpd && httpd.expat == expat;
|
||||
assert sslSupport -> !isNull openssl && (httpServer -> httpd.openssl == openssl);
|
||||
assert swigBindings -> !isNull swig;
|
||||
assert swigBindings -> !isNull swig && swig.pythonSupport;
|
||||
|
||||
derivation {
|
||||
name = "subversion-0.32.1";
|
||||
@@ -33,4 +33,5 @@ derivation {
|
||||
expat = expat;
|
||||
db4 = if localServer then db4 else null;
|
||||
swig = if swigBindings then swig else null;
|
||||
python = if swigBindings then swig.python else null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user