diff options
author | Leo Famulari <leo@famulari.name> | 2021-08-03 21:13:06 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-07-27 12:34:56 -0400 |
commit | d89a5297605e6e6f541396eb756a70dd7d22ba63 (patch) | |
tree | 72a4a53bf006f6ab2601afd036eaf3ca0a41a111 /gnu | |
parent | 0652abcf3fde8b5e71c356bdd214454684655830 (diff) | |
download | guix-d89a5297605e6e6f541396eb756a70dd7d22ba63.tar guix-d89a5297605e6e6f541396eb756a70dd7d22ba63.tar.gz |
gnu: Remove cadaver.
As discussed in <https://bugs.gnu.org/46602>, cadaver does not support a
current release of OpenSSL.
* gnu/packages/web.scm (cadaver): Remove variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index ff53333169..f0ac9ccee2 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -6611,38 +6611,6 @@ file links.") license:psfl ; linkcheck/gzip2.py license:expat)))) ; linkcheck/mem.py -(define-public cadaver - (package - (name "cadaver") - (version "0.23.3") - (source - (origin - (method url-fetch) - (uri (string-append "http://www.webdav.org/cadaver/" - name "-" version ".tar.gz")) - (sha256 - (base32 - "1jizq69ifrjbjvz5y79wh1ny94gsdby4gdxwjad4bfih6a5fck7x")))) - (build-system gnu-build-system) - ;; TODO: Unbundle libneon and make build succeed with new neon. - (arguments - `(#:configure-flags (list "--with-ssl=openssl") - #:tests? #f)) ;No tests included - (native-inputs - `(("gettext" ,gettext-minimal) - ("pkg-config" ,pkg-config) - ("intltool" ,intltool))) - (inputs - `(("expat" ,expat) - ("openssl" ,openssl-1.0))) - (home-page "http://www.webdav.org/cadaver/") - (synopsis "Command-line WebDAV client") - (description - "Cadaver is a command-line WebDAV client for Unix. It supports -file upload, download, on-screen display, namespace operations (move/copy), -collection creation and deletion, and locking operations.") - (license license:gpl2))) - (define-public castor (package (name "castor") |