mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
hyprpicker: Don't strip debug builds and add separateDebugInfo otherwise
(cherry picked from commit 235b0a649a)
This commit is contained in:
parent
37de78bc45
commit
a1ad58462c
1 changed files with 4 additions and 1 deletions
|
|
@ -29,7 +29,10 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
|
|||
hash = "sha256-ABumeksE8Bvtdb6g4vJ2jA9BLlYHnXU86VAuKJhBPoY=";
|
||||
};
|
||||
|
||||
cmakeBuildType = if debug then "Debug" else "Release";
|
||||
cmakeBuildType = if debug then "Debug" else "RelWithDebInfo";
|
||||
|
||||
dontStrip = debug;
|
||||
separateDebugInfo = !debug;
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue