File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
libnvidia-container-custom Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Copyright 2024 Edgeless Systems GmbH
2
+ # SPDX-License-Identifier: AGPL-3.0-only
3
+
1
4
# Upstream package from https://github.com/NixOS/nixpkgs/blob/nixos-24.11/pkgs/by-name/li/libnvidia-container/package.nix#L145
2
5
# Adapted to use custom paths for binary resolving specialized to the NixOS image we use this in. As this is incompatible with
3
6
# non-NixOS deployments, this cannot be upstreamed.
@@ -50,7 +53,7 @@ stdenv.mkDerivation rec {
50
53
patches = [
51
54
( replaceVars ./fix-library-resolving.patch {
52
55
inherit ( addDriverRunpath ) driverLink ;
53
- binaryPath = ( lib . makeBinPath binaryPaths ) ;
56
+ binaryPath = lib . makeBinPath binaryPaths ;
54
57
} )
55
58
56
59
./inline-c-struct.patch
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ lib.makeOverridable (
49
49
kata-runtime
50
50
kata-kernel-uvm
51
51
;
52
+ libnvidia-container = outerPkgs . libnvidia-container-custom ;
52
53
} )
53
54
] ;
54
55
You can’t perform that action at this time.
0 commit comments