My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/networking/cadaver/default.nix

22 lines
591 B

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "cadaver-0.23.3";
src = fetchurl {
url = "http://www.webdav.org/cadaver/${name}.tar.gz";
sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x";
};
buildInputs = [openssl];
configureFlags = ["--with-ssl"];
meta = with stdenv.lib; {
description = "A command-line WebDAV client for Unix";
homepage = http://www.webdav.org/cadaver;
maintainers = with maintainers; [ ianwookim ];
license = licenses.gpl2;
platforms = with platforms; linux ++ freebsd ++ openbsd;
};
}