gnome.gdm: enable debug info

This commit is contained in:
Jan Tojnar 2022-09-02 12:36:26 +02:00
parent fb7e3ad56c
commit 0d08ea5a3b

View file

@ -144,6 +144,7 @@ stdenv.mkDerivation rec {
rsync --archive "${DESTDIR}/etc" "$out"
rm --recursive "${DESTDIR}/etc"
for o in $outputs; do
if [[ "$o" = "debug" ]]; then continue; fi
rsync --archive "${DESTDIR}/''${!o}" "$(dirname "''${!o}")"
rm --recursive "${DESTDIR}/''${!o}"
done
@ -162,6 +163,8 @@ stdenv.mkDerivation rec {
# location using DESTDIR and then move it to proper one in postInstall.
DESTDIR = "${placeholder "out"}/dest";
separateDebugInfo = true;
passthru = {
updateScript = gnome.updateScript {
packageName = "gdm";