summary refs log tree commit diff
path: root/pkgs/tools/networking/cadaver/default.nix
blob: 70c7972bd65f8d20e9c6994e0f55b3a29ead19a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, stdenv, fetchurl, fetchpatch, neon, pkg-config, readline, zlib}:

stdenv.mkDerivation rec {
  name = "cadaver-0.23.3";

  src = fetchurl {
    url = "http://www.webdav.org/cadaver/${name}.tar.gz";
    sha256 = "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x";
  };

  patches = [
    (fetchpatch {
      url = "https://projects.archlinux.org/svntogit/community.git/plain/trunk/disable-sslv2.patch?h=packages/cadaver";
      name = "disable-sslv2.patch";
      sha256 = "1qx65hv584wdarks51yhd3y38g54affkphm5wz27xiz4nhmbssrr";
    })
    # Cadaver also works with newer versions of neon than stated
    # in the configure script
    ./configure.patch
  ];

  configureFlags = [ "--with-ssl" "--with-readline" ];

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ neon readline zlib ];

  meta = with lib; {
    description = "A command-line WebDAV client";
    homepage    = "http://www.webdav.org/cadaver";
    maintainers = with maintainers; [ ianwookim ];
    license     = licenses.gpl2;
    platforms   = with platforms; linux ++ freebsd ++ openbsd;
  };
}