kdePackages.drkonqi: fix undetected dependency on gdb (#352034)

This commit is contained in:
K900 2024-10-29 09:15:02 +03:00 committed by GitHub
commit caaaf01933
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,4 +33,10 @@ mkKdeDerivation {
"-DWITH_GDB12=1"
"-DWITH_PYTHON_VENDORING=0"
];
# Hardcoded as QString, which is UTF-16 so Nix can't pick it up automatically
postFixup = ''
mkdir -p $out/nix-support
echo "${gdb'}" > $out/nix-support/depends
'';
}