* Added some missing semicolons.

* Some packages needed for the Subversion server.

svn path=/nixpkgs/trunk/; revision=586
This commit is contained in:
Eelco Dolstra
2003-12-21 20:52:13 +00:00
parent 38bc744a0b
commit 480d68ece3
13 changed files with 116 additions and 10 deletions

View File

@@ -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

View File

@@ -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;
}