Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
828 B
Nix
44 lines
828 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
neon,
|
|
pkg-config,
|
|
zlib,
|
|
openssl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cadaver";
|
|
version = "0.28";
|
|
|
|
src = fetchurl {
|
|
url = "https://notroj.github.io/cadaver/cadaver-${version}.tar.gz";
|
|
hash = "sha256-M+OlS9VLHrMltIMWp8rMJAR8Uz74jm75i4jfu2DhJzQ=";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--with-ssl"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
neon
|
|
openssl
|
|
zlib
|
|
];
|
|
|
|
meta = {
|
|
description = "Command-line WebDAV client";
|
|
homepage = "https://notroj.github.io/cadaver/";
|
|
changelog = "https://github.com/notroj/cadaver/blob/${version}/NEWS";
|
|
maintainers = with lib.maintainers; [ ianwookim ];
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = with lib.platforms; linux ++ freebsd ++ openbsd;
|
|
mainProgram = "cadaver";
|
|
};
|
|
}
|