pkcs11-provider: add nix-update-script

This commit is contained in:
Morgan Jones 2024-06-03 00:35:46 -07:00
parent b7c0afd1fa
commit 232513f379
No known key found for this signature in database
GPG Key ID: 52BAC54ED447974E

View File

@ -2,6 +2,7 @@
, openssl, nss, p11-kit
, opensc, gnutls, expect
, meson, ninja, pkg-config
, nix-update-script
}:
stdenv.mkDerivation rec {
@ -42,6 +43,10 @@ stdenv.mkDerivation rec {
doCheck = true;
passthru.updateScript = nix-update-script {
extraArgs = [ "--version-regex" "v(\d\.\d)"];
};
meta = with lib; {
homepage = "https://github.com/latchset/pkcs11-provider";
description = "An OpenSSL 3.x provider to access hardware or software tokens using the PKCS#11 Cryptographic Token Interface";