2014-10-18 18:47:37 +01:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
2014-07-30 15:55:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cadaver-0.23.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.webdav.org/cadaver/${name}.tar.gz";
|
|
|
|
sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x";
|
|
|
|
};
|
|
|
|
|
2014-10-18 18:47:37 +01:00
|
|
|
buildInputs = [openssl];
|
|
|
|
configureFlags = ["--with-ssl"];
|
|
|
|
|
2014-07-30 15:55:44 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A command-line WebDAV client for Unix";
|
|
|
|
homepage = http://www.webdav.org/cadaver;
|
|
|
|
maintainers = with maintainers; [ ianwookim ];
|
2014-07-31 12:51:31 +01:00
|
|
|
license = licenses.gpl2;
|
2014-08-09 11:13:44 +01:00
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd;
|
2014-07-30 15:55:44 +01:00
|
|
|
};
|
|
|
|
}
|