hypr*: Enable separateDebugInfo (#537866)

This commit is contained in:
Austin Horstman
2026-07-02 20:18:27 +00:00
committed by GitHub
14 changed files with 35 additions and 1 deletions
@@ -68,6 +68,7 @@ stdenv.mkDerivation (finalAttrs: {
cmakeBuildType = if debug then "Debug" else "RelWithDebInfo";
dontStrip = debug;
separateDebugInfo = !debug;
dontWrapQtApps = true;
+1
View File
@@ -63,6 +63,7 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru.updateScript = nix-update-script { };
+3
View File
@@ -43,6 +43,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
"lib"
];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru.updateScript = nix-update-script { };
meta = {
+3
View File
@@ -59,6 +59,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
doCheck = true;
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru = {
updateScript = nix-update-script { };
};
+3
View File
@@ -45,6 +45,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
wayland-protocols
];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru = {
updateScript = nix-update-script { };
};
@@ -51,6 +51,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
qtWrapperArgs+=(--prefix PATH : "${makeBinPath [ pciutils ]}")
'';
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
meta = {
description = "Hyprland QT/qml utility apps";
homepage = "https://github.com/hyprwm/hyprland-qtutils";
+1
View File
@@ -185,6 +185,7 @@ customStdenv.mkDerivation (finalAttrs: {
cmakeBuildType = if debug then "Debug" else "RelWithDebInfo";
dontStrip = debug;
separateDebugInfo = !debug;
strictDeps = true;
cmakeFlags = mapAttrsToList cmakeBool {
+3
View File
@@ -34,6 +34,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
doCheck = true;
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
meta = {
homepage = "https://github.com/hyprwm/hyprlang";
description = "Official implementation library for the hypr config language";
+3
View File
@@ -72,6 +72,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
ln -s $out/share/hypr/hyprlock.conf $out/etc/xdg/hypr/hyprlock.conf
'';
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru.updateScript = nix-update-script { };
meta = {
+3
View File
@@ -88,6 +88,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
meta = {
inherit (finalAttrs.src.meta) homepage;
description = "Blazing fast wayland wallpaper utility";
+4 -1
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
+3
View File
@@ -46,6 +46,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
strictDeps = true;
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru = {
updateScript = nix-update-script { };
};
+1
View File
@@ -34,6 +34,7 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
passthru.updateScript = nix-update-script { };
+3
View File
@@ -31,6 +31,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: {
pugixml
];
cmakeBuildType = "RelWithDebInfo";
separateDebugInfo = true;
meta = {
inherit (finalAttrs.src.meta) homepage;
description = "A fast and consistent wire protocol for IPC ";