summary refs log tree commit diff
path: root/pkgs/tools/networking/cadaver/default.nix
blob: a6752606da690c9cec05accb646d543d1b524356 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}