Merge pull request #218768 from wegank/kakoune-gcc

kakoune: use gcc12Stdenv on aarch64-linux
This commit is contained in:
Weijia Wang 2023-02-28 11:29:25 +02:00 committed by GitHub
commit da2b9ece3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8769,7 +8769,7 @@ with pkgs;
# See comments on https://github.com/NixOS/nixpkgs/pull/198836
# Remove below when stdenv for linux-aarch64 become recent enough.
# https://github.com/NixOS/nixpkgs/issues/201254
stdenv = if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU then gcc11Stdenv else stdenv;
stdenv = if stdenv.isLinux && stdenv.isAarch64 && stdenv.cc.isGNU then gcc12Stdenv else stdenv;
};
kakoune = wrapKakoune kakoune-unwrapped {
plugins = [ ]; # override with the list of desired plugins