From d4c71b925c2153864bf8303a11e26290b43df5a6 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Mon, 17 Jun 2024 13:05:21 +0300 Subject: [PATCH] Nix: don't strip debug symbols --- nix/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/default.nix b/nix/default.nix index 4ada2d9..c5ce83e 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -14,6 +14,10 @@ stdenv.mkDerivation { outputs = ["out" "dev"]; + cmakeBuildType = "RelWithDebInfo"; + + dontStrip = true; + meta = with lib; { homepage = "https://github.com/hyprwm/hyprutils"; description = "Small C++ library for utilities used across the Hypr* ecosystem";