summaryrefslogtreecommitdiff
path: root/gnu/packages/authentication.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2024-08-18 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2024-08-18 02:00:00 +0200
commit227ada19779590d58057d371e71a623ef28ef073 (patch)
treed7a83cfeb008e40a27ea3e3f7a5d3ce5f924ffe3 /gnu/packages/authentication.scm
parentfce803005868f6d0568ba1b90a33d8eb8a8b5aa1 (diff)
gnu: oath-toolkit: Update to 2.6.11.
* gnu/packages/authentication.scm (oath-toolkit): Update to 2.6.11. [arguments]: Don't explicitly return #t from phases. Change-Id: I3cc1455690ed6a2bd8dc43c2b18fa60fcb4443a9
Diffstat (limited to 'gnu/packages/authentication.scm')
-rw-r--r--gnu/packages/authentication.scm7
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm
index 7c7fb8e861f..da778de4cb7 100644
--- a/gnu/packages/authentication.scm
+++ b/gnu/packages/authentication.scm
@@ -62,14 +62,14 @@
62(define-public oath-toolkit 62(define-public oath-toolkit
63 (package 63 (package
64 (name "oath-toolkit") 64 (name "oath-toolkit")
65 (version "2.6.9") 65 (version "2.6.11")
66 (source 66 (source
67 (origin 67 (origin
68 (method url-fetch) 68 (method url-fetch)
69 (uri (string-append "https://download.savannah.nongnu.org/releases/" 69 (uri (string-append "https://download.savannah.nongnu.org/releases/"
70 name "/" name "-" version ".tar.gz")) 70 name "/" name "-" version ".tar.gz"))
71 (sha256 71 (sha256
72 (base32 "11g9r1avl3d2nnkglk0g7d6z6gs5padk75xqzvbxp9pir0qwhfik")))) 72 (base32 "1d1c3r1jhd72l5ppsfa9wvvm8kffzs4k2v2qn0xc9x26bd52llgw"))))
73 (build-system gnu-build-system) 73 (build-system gnu-build-system)
74 (arguments 74 (arguments
75 ;; TODO ‘--enable-pskc’ causes xmlsec-related test suite failures. 75 ;; TODO ‘--enable-pskc’ causes xmlsec-related test suite failures.
@@ -83,8 +83,7 @@
83 (lambda* (#:key outputs #:allow-other-keys) 83 (lambda* (#:key outputs #:allow-other-keys)
84 (let* ((out (assoc-ref outputs "out")) 84 (let* ((out (assoc-ref outputs "out"))
85 (lib (string-append out "/lib"))) 85 (lib (string-append out "/lib")))
86 (for-each delete-file (find-files lib "\\.a$")) 86 (for-each delete-file (find-files lib "\\.a$"))))))))
87 #t))))))
88 (native-inputs 87 (native-inputs
89 (list pkg-config 88 (list pkg-config
90 ;; XXX: Perhaps this should be propagated from xmlsec. 89 ;; XXX: Perhaps this should be propagated from xmlsec.