Skip to content

Commit

Permalink
nixgl: fix wrapper for separateDebugInfo pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Smona committed May 6, 2024
1 parent 53482ff commit 680108f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/misc/nixgl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ in {
# the outputs and derivation attributes.
(pkg.overrideAttrs (old: {
name = "nixGL-${pkg.name}";

# Make sure this is false for the wrapper derivation, so nix doesn't expect
# a new debug output to be produced. We won't be producing any debug info
# for the original package.
separateDebugInfo = false;

buildCommand = ''
set -eo pipefail
Expand Down

0 comments on commit 680108f

Please sign in to comment.