summaryrefslogtreecommitdiff
path: root/pkgs/athena-bccr
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/athena-bccr')
-rw-r--r--pkgs/athena-bccr/default.nix5
-rw-r--r--pkgs/athena-bccr/gaudi-env.nix2
-rw-r--r--pkgs/athena-bccr/unwrapped.nix10
3 files changed, 10 insertions, 7 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; };
diff --git a/pkgs/athena-bccr/gaudi-env.nix b/pkgs/athena-bccr/gaudi-env.nix
index 0b98e08..1ced54e 100644
--- a/pkgs/athena-bccr/gaudi-env.nix
+++ b/pkgs/athena-bccr/gaudi-env.nix
@@ -13,7 +13,7 @@ buildFHSEnv {
name = "gaudi";
targetPkgs = pkgs: [
- unwrappedWithGaudi.ase-idprotect
+ unwrappedWithGaudi.ase-idprotect.lib
unwrappedWithGaudi.gaudi
(writeShellScriptBin "launch-gaudi" ''
diff --git a/pkgs/athena-bccr/unwrapped.nix b/pkgs/athena-bccr/unwrapped.nix
index 200e998..55ef107 100644
--- a/pkgs/athena-bccr/unwrapped.nix
+++ b/pkgs/athena-bccr/unwrapped.nix
@@ -67,19 +67,21 @@ in
autoPatchelfHook
];
+ outputs = [ "out" "lib" ];
+
installPhase = ''
runHook preInstall
- install -m755 -d $out/{bin,etc,lib/x64-athena}
+ install -m755 -d $out/bin $lib/{etc,lib/x64-athena}
install -m755 usr/bin/IDProtect{_Manager,PINTool} $out/bin/
- install -m755 usr/lib/x64-athena/* $out/lib/x64-athena
- cp -r etc/Athena $out/etc/Athena
+ install -m755 usr/lib/x64-athena/* $lib/lib/x64-athena
+ cp -r etc/Athena $lib/etc/Athena
runHook postInstall
'';
preFixup = ''
- patchelf --set-rpath $out/lib/x64-athena $out/bin/*
+ patchelf --set-rpath $lib/lib/x64-athena $out/bin/*
'';
};