diff options
| author | Alejandro Soto <alejandro@34project.org> | 2026-03-02 19:48:42 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2026-03-02 19:54:02 -0600 |
| commit | 378b6c12c7f3fdff0975d1dd56f3204bd4e04247 (patch) | |
| tree | 4da3130fe090cacc9480583016a7cad7ca14d517 /pkgs/athena-bccr/firmador.nix | |
| parent | 3764bf2c6a7cdc6d716eafea32aa4096b6933123 (diff) | |
trivionomicon: athena-bccr: add support for non-Athena driver vendors
Diffstat (limited to '')
| -rw-r--r-- | pkgs/athena-bccr/firmador.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/athena-bccr/firmador.nix b/pkgs/athena-bccr/firmador.nix index e07235b..82578e8 100644 --- a/pkgs/athena-bccr/firmador.nix +++ b/pkgs/athena-bccr/firmador.nix @@ -5,7 +5,7 @@ maven, openjdk, wrapGAppsHook3, - libasep11 ? null, + pkcs11-module ? null, }: let jdk = openjdk.override { enableJavaFX = true; @@ -34,8 +34,8 @@ in wrapGAppsHook3 ]; - postPatch = lib.optionalString (libasep11 != null) '' - sed -i 's@/usr/lib/x64-athena/libASEP11.so@${libasep11}@g' src/main/java/cr/libre/firmador/signers/CRSigner.java + postPatch = lib.optionalString (pkcs11-module != null) '' + sed -i 's@/usr/lib/x64-athena/libASEP11.so@${pkcs11-module}@g' src/main/java/cr/libre/firmador/signers/CRSigner.java ''; installPhase = '' |
