diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-06-09 23:26:14 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-06-09 23:26:48 +0200 |
commit | e6ad9bda4992a8170c40b5775cce991b9c48d128 (patch) | |
tree | 6927d9738e6ebc6e93241b148e8e77b9f0a80f58 /gnu | |
parent | b22cdf0c4240016ca321639682bc58b0384ea36b (diff) | |
download | guix-e6ad9bda4992a8170c40b5775cce991b9c48d128.tar.gz guix-e6ad9bda4992a8170c40b5775cce991b9c48d128.zip |
gnu: p11-kit: Update to 0.23.7.
Newer releases are only available on GitHub. See release announcements:
https://lists.freedesktop.org/archives/p11-glue/2017-June/000661.html
* gnu/packages/tls.scm (p11-kit): Update to 0.23.7.
[source]: Remove obsolete substitution.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tls.scm | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm index cdb4becb07..8964abb2f2 100644 --- a/gnu/packages/tls.scm +++ b/gnu/packages/tls.scm @@ -112,23 +112,15 @@ in intelligent transportation networks.") (define-public p11-kit (package (name "p11-kit") - (version "0.23.2") + (version "0.23.7") (source (origin (method url-fetch) - (uri (string-append "https://p11-glue.freedesktop.org/releases/p11-kit-" - version ".tar.gz")) + (uri (string-append "https://github.com/p11-glue/p11-kit/releases/" + "download/" version "/p11-kit-" version ".tar.gz")) (sha256 (base32 - "1w7szm190phlkg7qx05ychlj2dbvkgkhx9gw6dx4d5rw62l6wwms")) - (modules '((guix build utils))) ; for substitute* - (snippet - '(begin - ;; Drop one test that fails, also when trying to compile manually. - ;; Reported upstream at - ;; https://bugs.freedesktop.org/show_bug.cgi?id=89027 - (substitute* "Makefile.in" - (("test-module\\$\\(EXEEXT\\) ") "")))))) + "0hdy4h8byvcvd4av504xqfqyd1h6xy914j034mq3c6v4ya37r3lq")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) |