nixpkgs/pkgs/subversion/subversion.fix
Eelco Dolstra 23154d034f * Get rid of all `-S' flags (to remove debug info); this is now the default.
* Remove all references to set-env.sh; it has been merged into stdenv.fix (actually 
  baseenv.fix).

svn path=/nixpkgs/trunk/; revision=316
2003-08-18 19:52:54 +00:00

28 lines
1,015 B
Plaintext

Function(["localServer", "httpsClient", "httpServer", "pythonBindings"],
Package(
[ ("name", "subversion-0.27.0")
, ("build", Relative("subversion/subversion-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "http://subversion.tigris.org/files/documents/15/5642/subversion-0.27.0.tar.gz")
, ("md5", "0f4fa0ebb0b58b83bad9433b8baa3f9a")
]))
, ("localServer", Var("localServer"))
, ("httpsClient", Var("httpsClient"))
, ("httpServer", Var("httpServer"))
, ("httpsServer", True)
, ("pythonBindings", Var("pythonBindings"))
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
, ("ssl", If(Var("httpsClient"), IncludeFix("openssl/openssl.fix"), ""))
, ("swig", If(Var("pythonBindings"), IncludeFix("swig/swig.fix"), ""))
, ("httpd", If(Var("httpServer"), IncludeFix("httpd/httpd.fix"), ""))
, ("db4", If(Var("localServer"), IncludeFix("db4/db4.fix"), ""))
, ("libxml", IncludeFix("libxml2/libxml2.fix"))
]
)
)