Commit af32997a authored by Adam Joseph's avatar Adam Joseph
Browse files

alacritty: fix cross

This commit fixes cross compilation of alacritty by:

1. If xdg-utils.meta.broken (see
   https://github.com/NixOS/nixpkgs/pull/225112#issuecomment-1500354929),
   late-bind it via runtime $PATH rather than compile-time
   reference.

2. Use `$STRIP` instead of `strip`
parent e3bbbfaf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ rustPlatform.buildRustPackage rec {

  outputs = [ "out" "terminfo" ];

  postPatch = ''
  postPatch = lib.optionalString (!xdg-utils.meta.broken) ''
    substituteInPlace alacritty/src/config/ui_config.rs \
      --replace xdg-open ${xdg-utils}/bin/xdg-open
  '';
@@ -104,7 +104,7 @@ rustPlatform.buildRustPackage rec {
      # patchelf generates an ELF that binutils' "strip" doesn't like:
      #    strip: not enough room for program headers, try linking with -N
      # As a workaround, strip manually before running patchelf.
      strip -S $out/bin/alacritty
      $STRIP -S $out/bin/alacritty

      patchelf --set-rpath "${lib.makeLibraryPath rpathLibs}" $out/bin/alacritty
    ''