2016-03-24 18:02:02 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, openssl }:
|
2014-07-30 14:55:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cadaver-0.23.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.webdav.org/cadaver/${name}.tar.gz";
|
|
|
|
sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x";
|
|
|
|
};
|
|
|
|
|
2016-03-24 18:02:02 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://projects.archlinux.org/svntogit/community.git/plain/trunk/disable-sslv2.patch?h=packages/cadaver;
|
|
|
|
name = "disable-sslv2.patch";
|
|
|
|
sha256 = "1qx65hv584wdarks51yhd3y38g54affkphm5wz27xiz4nhmbssrr";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [ "--with-ssl" ];
|
2016-03-24 18:02:02 +00:00
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
2014-10-18 17:47:37 +00:00
|
|
|
|
2014-07-30 14:55:44 +00:00
|
|
|
meta = with stdenv.lib; {
|
2016-03-24 18:02:02 +00:00
|
|
|
description = "A command-line WebDAV client";
|
2014-07-30 14:55:44 +00:00
|
|
|
homepage = http://www.webdav.org/cadaver;
|
|
|
|
maintainers = with maintainers; [ ianwookim ];
|
2014-07-31 11:51:31 +00:00
|
|
|
license = licenses.gpl2;
|
2014-08-09 10:13:44 +00:00
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
2014-07-30 14:55:44 +00:00
|
|
|
};
|
|
|
|
}
|