aboutsummaryrefslogtreecommitdiff
path: root/gnu/services/nix.scm
diff options
context:
space:
mode:
authorRomain GARBAGE <romain.garbage@inria.fr>2024-07-22 13:28:02 +0200
committerRicardo Wurmus <rekado@elephly.net>2024-07-23 00:31:19 +0200
commit9bab4f41248985885cff252fe8eb7cb4771bb237 (patch)
treebd5ea3f6c659c217c5629972dfef6dec629a8840 /gnu/services/nix.scm
parentc13609005eeaa6502d868f4cdb3e51e49eda4577 (diff)
downloadguix-9bab4f41248985885cff252fe8eb7cb4771bb237.tar.gz
guix-9bab4f41248985885cff252fe8eb7cb4771bb237.zip
gnu: Add ghc-crypton-x509-validation.
* gnu/packages/haskell-crypto.scm (ghc-crypton-x509-validation): New variable. Change-Id: Ib25c2dee8fef24c763cf70dfa1c615405d250d39
Diffstat (limited to 'gnu/services/nix.scm')
0 files changed, 0 insertions, 0 deletions
@item Automatically keep history and back up @item Works with all tested CalDAV and CardDAV clients @end itemize") (license gpl3+))) (define-public vdirsyncer (package (name "vdirsyncer") (version "0.19.2") (source (origin (method url-fetch) (uri (pypi-uri name version)) (sha256 (base32 "1fl21m10ghrpmkqa12g0qri99cxk9879pkb60jd4b4w2mgp8q1gx")))) (build-system python-build-system) (arguments (list #:tests? #f ; the test suite is very flakey #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key inputs outputs tests? #:allow-other-keys) (add-installed-pythonpath inputs outputs) (setenv "DETERMINISTIC_TESTS" "true") (setenv "DAV_SERVER" "radicale") (setenv "REMOTESTORAGE_SERVER" "skip") (if tests? (invoke "make" "test")))) (add-after 'unpack 'patch-version-call (lambda _ (substitute* "docs/conf.py" (("^release.*") (string-append "release = '" #$version "'\n")))))))) (native-inputs (list python-setuptools-scm python-sphinx ;; Required for testing python-aioresponses python-hypothesis python-trustme python-pytest python-pytest-asyncio python-pytest-cov python-pytest-httpserver radicale)) (inputs (list python-aiohttp python-aiostream python-atomicwrites python-click python-click-log python-requests python-requests-toolbelt)) (synopsis "Synchronize calendars and contacts") (description "Vdirsyncer synchronizes your calendars and addressbooks between two storage locations. The most popular purpose is to synchronize a CalDAV or CardDAV server with a local folder or file. The local data can then be accessed via a variety of programs, none of which have to know or worry about syncing to a server.") (home-page "https://github.com/pimutils/vdirsyncer") (license bsd-3)))