hyprpicker: Don't strip debug builds and add separateDebugInfo otherwise

(cherry picked from commit 235b0a649a)
This commit is contained in:
Lee Bousfield 2026-07-02 13:09:33 -05:00 committed by github-actions[bot]
commit a1ad58462c

View file

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