diff options
author | Junker <dk@junkeria.club> | 2025-04-11 08:56:56 +0700 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-15 10:47:04 +0200 |
commit | 8c6d90ac099219e0eb8ab3d49b1935c3c97e28a5 (patch) | |
tree | 2db076766849cbe9773db543a917dee9bafe56bd /gnu/packages/dav.scm | |
parent | 508ac3c82920f2cd22e509cd4e6e5ae38c9c589b (diff) |
gnu: Add cadaver.
* gnu/packages/dav.scm (cadaver): New variable.
Change-Id: Ia8889a03633f9b6a108a9b32a99f3a6835b63a1f
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/dav.scm')
-rw-r--r-- | gnu/packages/dav.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/dav.scm b/gnu/packages/dav.scm index af348aa468..49c2b027cd 100644 --- a/gnu/packages/dav.scm +++ b/gnu/packages/dav.scm @@ -24,6 +24,7 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages dav) + #:use-module (guix build-system gnu) #:use-module (guix build-system python) #:use-module (guix build-system pyproject) #:use-module (guix download) @@ -33,6 +34,7 @@ #:use-module (guix git-download) #:use-module (gnu packages) #:use-module (gnu packages check) + #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) @@ -41,8 +43,37 @@ #:use-module (gnu packages python-xyz) #:use-module (gnu packages sphinx) #:use-module (gnu packages time) + #:use-module (gnu packages tls) + #:use-module (gnu packages version-control) #:use-module (gnu packages xml)) +(define-public cadaver + (package + (name "cadaver") + (version "0.26") + (source + (origin + (method url-fetch) + (uri (string-append "https://notroj.github.io/cadaver/cadaver-" + version ".tar.gz")) + (sha256 + (base32 "0mbv6mkdhxqhdq5kgn821if10h184m1xlpqq0vpxj19mvwyf8dlj")))) + (build-system gnu-build-system) + (inputs (list neon + openssl + libxml2)) + (native-inputs (list pkg-config)) + (arguments '(#:configure-flags (list "--with-ssl=openssl") + #:tests? #f)) ; no check target + (home-page "https://notroj.github.io/cadaver/") + (synopsis "Command-line WebDAV client") + (description + "Cadaver is a command-line client for WebDAV server operations. It +supports a variety of WebDAV features and provides an interactive +command-line environment with support for file manipulation on remote WebDAV +servers.") + (license license:gpl2+))) + (define-public radicale (package (name "radicale") |