Unverified Commit 456d8190 authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

Merge pull request #225119 from amjoseph-nixpkgs/pr/alacritty/fix-cross

alacritty: fix cross
parents 5947116c af32997a
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
    ''