fix linting issues

This commit is contained in:
Peter Tillemans 2024-06-12 14:50:49 +02:00
parent 84f188690e
commit 8481a44d9a

View file

@ -14,26 +14,28 @@
(define-public xca (define-public xca
(package (package
(name "xca") (name "xca")
(version "2.6.0") (version "2.6.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"https://github.com/chris2511/xca/releases/download/RELEASE." version "https://github.com/chris2511/xca/releases/download/RELEASE." version
"/xca-" version ".tar.gz")) "/xca-" version ".tar.gz"))
(sha256 (sha256
(base32 "028pgckazpp0nsv0swi3sfqbswk3g5zz1z7b692wxp5sx8i9z8sm")))) (base32 "028pgckazpp0nsv0swi3sfqbswk3g5zz1z7b692wxp5sx8i9z8sm"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:tests? #f)) ;; tests fail because cannot connect to display and date conversion '(#:tests? #f)) ;; tests fail because cannot connect to display and date conversion
(inputs (list openssl pkg-config qtbase-5 qttools-5 python-sphinx)) (inputs (list openssl qtbase-5 qttools-5))
(synopsis "X - Certificate and Key management") (native-inputs (list pkg-config python-sphinx))
(description (synopsis "X - Certificate and Key management")
"This application is intended for creating and managing X.509 certificates, certificate requests, RSA, DSA and EC private keys, Smartcards and CRLs. (description
"This application is intended for creating and managing X.509 certificates,
certificate requests, RSA, DSA and EC private keys, Smartcards and CRLs.
Everything that is needed for a CA is implemented.") Everything that is needed for a CA is implemented.")
(home-page "https://www.hohnstaedt.de/xca/index.php") (home-page "https://www.hohnstaedt.de/xca/index.php")
(license #f))) (license license:bsd-3)))
xca xca