nixpkgs/pkgs/tools/networking/cadaver/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

43 lines
817 B
Nix

{ lib
, stdenv
, fetchurl
, neon
, pkg-config
, zlib
, openssl
}:
stdenv.mkDerivation rec {
pname = "cadaver";
version = "0.24";
src = fetchurl {
url = "https://notroj.github.io/cadaver/cadaver-${version}.tar.gz";
hash = "sha256-Rs/y8+vTLNMoNoEspHvMdTU/wr51fwk9qIwN2PEP1fY=";
};
configureFlags = [
"--with-ssl"
];
nativeBuildInputs = [
pkg-config
];
buildInputs = [
neon
openssl
zlib
];
meta = with lib; {
description = "Command-line WebDAV client";
homepage = "https://notroj.github.io/cadaver/";
changelog = "https://github.com/notroj/cadaver/blob/${version}/NEWS";
maintainers = with maintainers; [ ianwookim ];
license = licenses.gpl2Plus;
platforms = with platforms; linux ++ freebsd ++ openbsd;
mainProgram = "cadaver";
};
}