zed-editor: strip application binary

This commit is contained in:
Niklas Korz
2024-12-30 12:45:05 +01:00
parent 8a50cb2041
commit 210c4c2a47

View File

@@ -288,6 +288,16 @@ rustPlatform.buildRustPackage rec {
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;
# The darwin Applications directory is not stripped by default, see
# https://github.com/NixOS/nixpkgs/issues/367169
# This setting is not platform-guarded as it doesn't do any harm on Linux,
# where this directory simply does not exist.
stripDebugList = [
"bin"
"libexec"
"Applications"
];
passthru = {
updateScript = gitUpdater {
rev-prefix = "v";