Skip to content

Commit

Permalink
zed-editor: strip application binary
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaskorz committed Dec 30, 2024
1 parent afe360e commit b3fd239
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/by-name/ze/zed-editor/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,12 @@ 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";
Expand Down

0 comments on commit b3fd239

Please sign in to comment.