neon-0.28: add support for a static library build (unused by default)
svn path=/nixpkgs/trunk/; revision=13082
This commit is contained in:
parent
974bb73947
commit
17a9d60d01
|
@ -1,23 +1,27 @@
|
||||||
{ stdenv, fetchurl, libxml2
|
{ stdenv, fetchurl, libxml2
|
||||||
, compressionSupport ? true, zlib ? null
|
, compressionSupport ? true, zlib ? null
|
||||||
, sslSupport ? true, openssl ? null
|
, sslSupport ? true, openssl ? null
|
||||||
|
, static ? false
|
||||||
|
, shared ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert compressionSupport -> zlib != null;
|
assert compressionSupport -> zlib != null;
|
||||||
assert sslSupport -> openssl != null;
|
assert sslSupport -> openssl != null;
|
||||||
|
assert static || shared;
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "neon-0.28.3";
|
name = "neon-0.28.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.webdav.org/neon/neon-0.28.3.tar.gz;
|
url = http://www.webdav.org/neon/neon-0.28.3.tar.gz;
|
||||||
sha256 = "1hnd9wlbnfpppx6rvalhdkc1rf29afacl1m15z751g3h9hdybplh";
|
sha256 = "1hnd9wlbnfpppx6rvalhdkc1rf29afacl1m15z751g3h9hdybplh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [libxml2] ++ stdenv.lib.optional compressionSupport zlib;
|
buildInputs = [libxml2] ++ stdenv.lib.optional compressionSupport zlib;
|
||||||
|
|
||||||
configureFlags = ''
|
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 compressionSupport then "--with-zlib" else "--without-zlib"}
|
||||||
${if sslSupport then "--with-ssl --with-libs=${openssl}" else "--without-ssl"}
|
${if sslSupport then "--with-ssl --with-libs=${openssl}" else "--without-ssl"}
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in New Issue