cudaPackages: allow FHS references by default
...harden gradually instead
This commit is contained in:
parent
cfa07014b6
commit
5d6136a53e
2 changed files with 2 additions and 1 deletions
|
@ -44,6 +44,7 @@ attrsets.filterAttrs (attr: _: (builtins.hasAttr attr prev)) {
|
|||
|
||||
cuda_cudart = prev.cuda_cudart.overrideAttrs (
|
||||
prevAttrs: {
|
||||
allowFHSReferences = false;
|
||||
|
||||
# The libcuda stub's pkg-config doesn't follow the general pattern:
|
||||
postPatch = prevAttrs.postPatch or "" + ''
|
||||
|
|
|
@ -219,7 +219,7 @@ backendStdenv.mkDerivation (
|
|||
'';
|
||||
|
||||
doInstallCheck = true;
|
||||
allowFHSReferences = false;
|
||||
allowFHSReferences = true; # TODO: Default to `false`
|
||||
postInstallCheck = ''
|
||||
echo "Executing postInstallCheck"
|
||||
|
||||
|
|
Loading…
Reference in a new issue