nix: add debug flag

enable keepDebugInfo adapter on debug
build with mold linker
This commit is contained in:
Mihai Fufezan 2024-11-05 14:34:54 +02:00
parent fd4be8b9ca
commit 3ce0cde870
Signed by: fufexan
SSH key fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg

View file

@ -1,13 +1,25 @@
{ {
lib, lib,
stdenv, stdenv,
stdenvAdapters,
cmake, cmake,
pkg-config, pkg-config,
pixman, pixman,
version ? "git", version ? "git",
doCheck ? false, doCheck ? false,
}: debug ? false,
stdenv.mkDerivation { }: let
inherit (builtins) foldl';
inherit (lib.lists) flatten;
adapters = flatten [
stdenvAdapters.useMoldLinker
(lib.optional debug stdenvAdapters.keepDebugInfo)
];
customStdenv = foldl' (acc: adapter: adapter acc) stdenv adapters;
in
customStdenv.mkDerivation {
pname = "hyprutils"; pname = "hyprutils";
inherit version doCheck; inherit version doCheck;
src = ../.; src = ../.;
@ -23,9 +35,10 @@ stdenv.mkDerivation {
outputs = ["out" "dev"]; outputs = ["out" "dev"];
cmakeBuildType = "RelWithDebInfo"; cmakeBuildType =
if debug
dontStrip = true; then "Debug"
else "RelWithDebInfo";
meta = with lib; { meta = with lib; {
homepage = "https://github.com/hyprwm/hyprutils"; homepage = "https://github.com/hyprwm/hyprutils";