mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #49694 from periklis/alacritty-fix-regression
alacritty: fix build on darwin
This commit is contained in:
commit
330afca638
1 changed files with 4 additions and 1 deletions
|
@ -73,7 +73,10 @@ in buildRustPackage rec {
|
|||
buildInputs = rpathLibs
|
||||
++ lib.optionals stdenv.isDarwin darwinFrameworks;
|
||||
|
||||
outputs = [ "out" "terminfo" ];
|
||||
outputs = [ "out" "terminfo" ];
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/49693
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace copypasta/src/x11.rs \
|
||||
|
|
Loading…
Reference in a new issue