From aa6c9ba04ea1e2eaeb2d4658a2db779d5db42080 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 2 Oct 2009 11:51:35 +0000 Subject: [PATCH] * 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 --- pkgs/applications/version-management/subversion/1.6.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/applications/version-management/subversion/1.6.nix b/pkgs/applications/version-management/subversion/1.6.nix index 87008ae922d..31bd312c8b0 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"}