2010-04-28 08:40:19 +00:00
|
|
|
{ stdenv, fetchurl, libxml2, pkgconfig
|
|
|
|
, compressionSupport ? true, zlib ? null
|
|
|
|
, sslSupport ? true, openssl ? null
|
|
|
|
, static ? false
|
|
|
|
, shared ? true
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert compressionSupport -> zlib != null;
|
|
|
|
assert sslSupport -> openssl != null;
|
|
|
|
assert static || shared;
|
|
|
|
|
2012-06-06 21:47:26 +00:00
|
|
|
let
|
|
|
|
inherit (stdenv.lib) optionals;
|
|
|
|
in
|
|
|
|
|
2010-04-28 08:40:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-02-02 01:50:58 +00:00
|
|
|
version = "0.30.2";
|
2015-11-14 20:32:51 +00:00
|
|
|
name = "neon-${version}";
|
2010-04-28 08:40:19 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.webdav.org/neon/${name}.tar.gz";
|
2017-02-02 01:50:58 +00:00
|
|
|
sha256 = "1jpvczcx658vimqm7c8my2q41fnmjaf1j03g7bsli6rjxk6xh2yv";
|
2010-04-28 08:40:19 +00:00
|
|
|
};
|
|
|
|
|
2012-06-06 21:47:26 +00:00
|
|
|
patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ];
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [libxml2 openssl]
|
2010-04-28 08:40:19 +00:00
|
|
|
++ stdenv.lib.optional compressionSupport zlib;
|
|
|
|
|
|
|
|
configureFlags = ''
|
|
|
|
${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" else "--without-ssl"}
|
|
|
|
--enable-shared
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {inherit compressionSupport sslSupport;};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An HTTP and WebDAV client library";
|
|
|
|
homepage = http://www.webdav.org/neon/;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-04-28 08:40:19 +00:00
|
|
|
};
|
|
|
|
}
|