summary refs log tree commit diff
path: root/pkgs/development/libraries/neon
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2008-10-16 12:42:07 +0000
committerPeter Simons <simons@cryp.to>2008-10-16 12:42:07 +0000
commit17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6 (patch)
treebeb63decfade5ba887eae1853cd707786b928fcb /pkgs/development/libraries/neon
parent974bb739473c867e76fcc9101d4b87686a16e06d (diff)
downloadnixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar.gz
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar.bz2
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar.lz
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar.xz
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.tar.zst
nixpkgs-17a9d60d01e5a83eb27b450a8f68a7caaa1ea5f6.zip
neon-0.28: add support for a static library build (unused by default)
svn path=/nixpkgs/trunk/; revision=13082
Diffstat (limited to 'pkgs/development/libraries/neon')
-rw-r--r--pkgs/development/libraries/neon/0.28.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/libraries/neon/0.28.nix b/pkgs/development/libraries/neon/0.28.nix
index 7043679e1e3..ff777688565 100644
--- a/pkgs/development/libraries/neon/0.28.nix
+++ b/pkgs/development/libraries/neon/0.28.nix
@@ -1,23 +1,27 @@
 { stdenv, fetchurl, libxml2
 , compressionSupport ? true, zlib ? null
 , sslSupport ? true, openssl ? null
+, static ? false
+, shared ? true
 }:
 
 assert compressionSupport -> zlib != null;
 assert sslSupport -> openssl != null;
+assert static || shared;
 
 stdenv.mkDerivation {
   name = "neon-0.28.3";
-  
+
   src = fetchurl {
     url = http://www.webdav.org/neon/neon-0.28.3.tar.gz;
     sha256 = "1hnd9wlbnfpppx6rvalhdkc1rf29afacl1m15z751g3h9hdybplh";
   };
-  
+
   buildInputs = [libxml2] ++ stdenv.lib.optional compressionSupport zlib;
 
   configureFlags = ''
-    --enable-shared --disable-static
+    ${if shared then "--enable-shared" else "--disable-shared"}
+    ${if static then "--enable-static" else "--disable-static"}
     ${if compressionSupport then "--with-zlib" else "--without-zlib"}
     ${if sslSupport then "--with-ssl --with-libs=${openssl}" else "--without-ssl"}
   '';