diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-08-02 20:31:01 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-08-02 20:31:27 -0600 |
| commit | 789a5a9563f1c3e5270205d39d9eece50909b739 (patch) | |
| tree | d606e0d8ccf7f5a9372448d6ed9a429667f91195 /pkgs/athena-bccr/default.nix | |
| parent | 565089cfa6fe3b102d63d17ec1ad488be223326e (diff) | |
pkgs/athena-bccr: split ase-idprotect bin and lib outputs
Diffstat (limited to 'pkgs/athena-bccr/default.nix')
| -rw-r--r-- | pkgs/athena-bccr/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/athena-bccr/default.nix b/pkgs/athena-bccr/default.nix index cda0b62..f9276c1 100644 --- a/pkgs/athena-bccr/default.nix +++ b/pkgs/athena-bccr/default.nix @@ -17,11 +17,12 @@ let pkgsForRelease = release: let - libasep11 = "${unwrapped.ase-idprotect}/lib/x64-athena/libASEP11.so"; + ase-pkcs11 = unwrapped.ase-idprotect.lib; + libasep11 = "${ase-pkcs11}/lib/x64-athena/libASEP11.so"; unwrapped = overrideUnwrapped { inherit release; } { }; in { - inherit libasep11; + inherit ase-pkcs11 libasep11; inherit (unwrapped) ase-idprotect bccr-cacerts; gaudi = callPackage ./gaudi-env.nix { inherit unwrapped; }; |
