Skip to content

Commit

Permalink
fix: handle unset buildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kenranunderscore committed Mar 20, 2024
1 parent d709a8a commit 03099db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixGL.nix
Expand Up @@ -81,7 +81,7 @@ let
else
builtins.fetchurl url;
useGLVND = true;
nativeBuildInputs = oldAttrs.buildInputs ++ [zstd];
nativeBuildInputs = oldAttrs.buildInputs or [] ++ [zstd];
});

nvidiaLibsOnly = nvidiaDrivers.override {
Expand Down

0 comments on commit 03099db

Please sign in to comment.