Skip to content

Commit

Permalink
disable nixgl wrapper until it is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
novasharper committed Mar 29, 2024
1 parent d43a97a commit cf74926
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion home-manager/nixgl-package.nix
Expand Up @@ -93,6 +93,10 @@ in
rec {
inherit intelPresent;
inherit nvidiaPresent;
# Disabling untile https://github.com/nix-community/nixGL/pull/165 merges
# A previous PR added zstd to native build inputs, but the overlay is broken
# (in some cases?) because oldAttrs.buildInputs may not be defined.
/*
package =
if (builtins.length packages) > 1
then
Expand All @@ -104,12 +108,14 @@ rec {
exec ${
builtins.toString (
builtins.map
(pkg: lib.getExe (nixgl.nixGLCommon pkg))
(pkg: lib.getExe' (nixgl.nixGLCommon pkg) "nixGL")
packages
)
} "$@"
'';
}
else nixgl.auto.nixGLDefault;
wrap = guiWrapFactory package;
*/
wrap = pkg: pkg;
}

0 comments on commit cf74926

Please sign in to comment.