ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / cadaver / package.nix
blob699b0d04dc8697351636160136684c232fd4d4ea
1 { lib
2 , stdenv
3 , fetchurl
4 , neon
5 , pkg-config
6 , zlib
7 , openssl
8 }:
10 stdenv.mkDerivation rec {
11   pname = "cadaver";
12   version = "0.24";
14   src = fetchurl {
15     url = "https://notroj.github.io/cadaver/cadaver-${version}.tar.gz";
16     hash = "sha256-Rs/y8+vTLNMoNoEspHvMdTU/wr51fwk9qIwN2PEP1fY=";
17   };
19   configureFlags = [
20     "--with-ssl"
21   ];
23   nativeBuildInputs = [
24     pkg-config
25   ];
27   buildInputs = [
28     neon
29     openssl
30     zlib
31   ];
33   meta = with lib; {
34     description = "Command-line WebDAV client";
35     homepage = "https://notroj.github.io/cadaver/";
36     changelog = "https://github.com/notroj/cadaver/blob/${version}/NEWS";
37     maintainers = with maintainers; [ ianwookim ];
38     license = licenses.gpl2Plus;
39     platforms = with platforms; linux ++ freebsd ++ openbsd;
40     mainProgram = "cadaver";
41   };