Merge pull request #10200 from matthiasbeyer/fix-davfs2
davfs2: Fix broken build
This commit is contained in:
commit
51db26ee03
44
pkgs/development/libraries/neon/0.29.nix
Normal file
44
pkgs/development/libraries/neon/0.29.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{ 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;
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (stdenv.lib) optionals;
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "0.29.6";
|
||||||
|
name = "neon-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.webdav.org/neon/${name}.tar.gz";
|
||||||
|
sha256 = "0hzbjqdx1z8zw0vmbknf159wjsxbcq8ii0wgwkqhxj3dimr0nr4w";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = optionals stdenv.isDarwin [ ./0.29.6-darwin-fix-configure.patch ];
|
||||||
|
|
||||||
|
buildInputs = [libxml2 pkgconfig openssl]
|
||||||
|
++ 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/;
|
||||||
|
};
|
||||||
|
}
|
@ -1204,7 +1204,9 @@ let
|
|||||||
|
|
||||||
darkstat = callPackage ../tools/networking/darkstat { };
|
darkstat = callPackage ../tools/networking/darkstat { };
|
||||||
|
|
||||||
davfs2 = callPackage ../tools/filesystems/davfs2 { };
|
davfs2 = callPackage ../tools/filesystems/davfs2 {
|
||||||
|
neon = neon_0_29;
|
||||||
|
};
|
||||||
|
|
||||||
dbench = callPackage ../development/tools/misc/dbench { };
|
dbench = callPackage ../development/tools/misc/dbench { };
|
||||||
|
|
||||||
@ -7658,6 +7660,11 @@ let
|
|||||||
sslSupport = true;
|
sslSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
neon_0_29 = callPackage ../development/libraries/neon/0.29.nix {
|
||||||
|
compressionSupport = true;
|
||||||
|
sslSupport = true;
|
||||||
|
};
|
||||||
|
|
||||||
nethack = callPackage ../games/nethack { };
|
nethack = callPackage ../games/nethack { };
|
||||||
|
|
||||||
nettle = callPackage ../development/libraries/nettle { };
|
nettle = callPackage ../development/libraries/nettle { };
|
||||||
|
Loading…
Reference in New Issue
Block a user