about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-02 11:51:35 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-10-02 11:51:35 +0000
commitaa6c9ba04ea1e2eaeb2d4658a2db779d5db42080 (patch)
tree109064cb58e11062ae5a18798f16807fe68b6106 /pkgs/applications
parent4041f93fbfe0eb6eed0b02f9045e286aed9451ca (diff)
downloadnixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar.gz
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar.bz2
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar.lz
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar.xz
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.tar.zst
nixlib-aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080.zip
* The "static" flag is no longer used it seems. And static builds can
  probably be done using the makeStaticBinaries stdenv adapter.

svn path=/nixpkgs/trunk/; revision=17595
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/subversion/1.6.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/subversion/1.6.nix b/pkgs/applications/version-management/subversion/1.6.nix
index 87008ae922d4..31bd312c8b0f 100644
--- a/pkgs/applications/version-management/subversion/1.6.nix
+++ b/pkgs/applications/version-management/subversion/1.6.nix
@@ -8,7 +8,6 @@
 , javahlBindings ? false
 , stdenv, fetchurl, apr, aprutil, neon, zlib, sqlite
 , httpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null
-, static ? false
 }:
 
 assert bdbSupport -> aprutil.bdbSupport;
@@ -37,7 +36,6 @@ stdenv.mkDerivation rec {
 
   configureFlags = ''
     --disable-keychain
-    ${if static then "--disable-shared --enable-all-static" else ""}
     ${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
     ${if httpServer then "--with-apxs=${httpd}/bin/apxs" else "--without-apxs"}
     ${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}