mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Remove p11-kit@0.23.22.
* gnu/packages/tls.scm (p11-kit): Merge with ... (p11-kit-next): ... this removed variable. * gnu/packages/package-management.scm (flatpak)[inputs]: Change from P11-KIT-NEXT to P11-KIT.
This commit is contained in:
parent
a2d231ad15
commit
6be081eb12
2 changed files with 7 additions and 22 deletions
|
@ -1962,7 +1962,7 @@ (define-public flatpak
|
|||
libsoup-minimal-2
|
||||
libxau
|
||||
libxml2
|
||||
p11-kit-next
|
||||
p11-kit
|
||||
util-linux
|
||||
xdg-dbus-proxy))
|
||||
(propagated-inputs (list glib-networking gnupg gsettings-desktop-schemas))
|
||||
|
|
|
@ -137,14 +137,14 @@ (define-public asn1c
|
|||
(define-public p11-kit
|
||||
(package
|
||||
(name "p11-kit")
|
||||
(version "0.23.22")
|
||||
(version "0.24.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/p11-glue/p11-kit/releases/"
|
||||
"download/" version "/p11-kit-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1dn6br4v033d3gp2max9lsr3y4q0nj6iyr1yq3kzi8ym7lal13wa"))))
|
||||
(base32 "1y5fm9gwhkh902r26p90qf1g2h1ziqrk4hgf9i9sxm2wzlz7ignq"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(append (list pkg-config)
|
||||
|
@ -157,7 +157,10 @@ (define-public p11-kit
|
|||
(list libbsd)
|
||||
'())))
|
||||
(arguments
|
||||
(list #:configure-flags #~'("--without-trust-paths")
|
||||
(list #:configure-flags
|
||||
;; Use the default certificates so that users such as flatpak
|
||||
;; find them. See <https://issues.guix.gnu.org/49957>.
|
||||
#~'("--with-trust-paths=/etc/ssl/certs/ca-certificates.crt")
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
#$@(if (hurd-target?)
|
||||
#~((add-after 'unpack 'apply-hurd-patch
|
||||
|
@ -189,24 +192,6 @@ (define patch
|
|||
living in the same process.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public p11-kit-next
|
||||
(package
|
||||
(inherit p11-kit)
|
||||
(version "0.24.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/p11-glue/p11-kit/releases/"
|
||||
"download/" version "/p11-kit-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1y5fm9gwhkh902r26p90qf1g2h1ziqrk4hgf9i9sxm2wzlz7ignq"))))
|
||||
(arguments
|
||||
;; Use the default certificates so that users such as flatpak find them.
|
||||
;; See <https://issues.guix.gnu.org/49957>.
|
||||
(substitute-keyword-arguments (package-arguments p11-kit)
|
||||
((#:configure-flags flags #~'())
|
||||
#~'("--with-trust-paths=/etc/ssl/certs/ca-certificates.crt"))))))
|
||||
|
||||
(define-public gnutls
|
||||
(package
|
||||
(name "gnutls")
|
||||
|
|
Loading…
Reference in a new issue