1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

nixgl: fix wrapper for separateDebugInfo pkgs

This commit is contained in:
Mel Bourgeois 2024-05-06 13:08:29 -05:00
parent 53482ffc42
commit 680108fa27
No known key found for this signature in database
GPG Key ID: 290FCF081AEDB3EC

View File

@ -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