Skip to content

Commit

Permalink
Merge pull request #165 from kenranunderscore/handle-unset-buildInputs
Browse files Browse the repository at this point in the history
fix: handle unset `buildInputs`
  • Loading branch information
guibou committed Apr 19, 2024
2 parents d709a8a + def0079 commit 310f8e4
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.nativeBuildInputs or [] ++ [zstd];
});

nvidiaLibsOnly = nvidiaDrivers.override {
Expand Down

0 comments on commit 310f8e4

Please sign in to comment.