diff options
| author | NoƩ Lopez <noelopez@free.fr> | 2026-03-15 16:46:56 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-22 09:43:40 +0100 |
| commit | b724894fa83df936154ed06a2e93190d367dbf08 (patch) | |
| tree | 18c9b6465cbeb6f5fbec36362c542effb373193d /gnu/packages/security-token.scm | |
| parent | e4bbafdf63a2d26c91453d585d43052413c50a9e (diff) | |
gnu: softhsm: Update to 2.7.0.
* gnu/packages/security-token.scm (softhsm): Update to 2.7.0.
[source]: Switch to git source.
[inputs]: Add autoconf, automake, and libtool. Sort alphabetically.
Change-Id: I4c1dd367b76dad448b32fb300d4f9707335497f5
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu/packages/security-token.scm')
| -rw-r--r-- | gnu/packages/security-token.scm | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 8dc5c4b18d9..5aa7d80034f 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -223,16 +223,16 @@ the low-level development kit for the Yubico YubiKey authentication device.") (define-public softhsm (package (name "softhsm") - (version "2.6.1") + (version "2.7.0") (source (origin - (method url-fetch) - (uri (string-append - "https://dist.opendnssec.org/source/" - "softhsm-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/softhsm/SoftHSMv2.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1wkmyi6n3z2pak1cj5yk6v6bv9w0m24skycya48iikab0mrr8931")) - (patches (search-patches "softhsm-fix-openssl3-tests.patch")))) + "0km7pnwp1ny7k317srpagwp3mnb5f5b1d82fj07hqgcmc209s2l3")))) (build-system gnu-build-system) (arguments (list #:configure-flags @@ -240,7 +240,12 @@ the low-level development kit for the Yubico YubiKey authentication device.") (string-append "--with-p11-kit=" #$output "/share/p11-kit/modules")))) (inputs (list openssl)) - (native-inputs (list pkg-config cppunit)) + (native-inputs + (list autoconf + automake + cppunit + libtool + pkg-config)) (synopsis "Software implementation of a generic cryptographic device") (description "SoftHSM 2 is a software implementation of a generic cryptographic device |
