Enforce Clang stdenv for swiftformat

This commit is contained in:
Spotlight 2023-09-24 15:48:35 -05:00
parent 150221e4be
commit 231d591c6c
Signed by: spotlight
GPG key ID: 874AA355B3209BDC
2 changed files with 9 additions and 7 deletions

View file

@ -1,5 +1,7 @@
self: super:
{
monaco-powerline = super.callPackage ./monaco-powerline/default.nix { };
swiftformat = super.callPackage ./swiftformat.nix { };
# Building with Swift requires using the Clang stdenv.
# For more information: https://github.com/NixOS/nixpkgs/issues/242779#issuecomment-1732558769
swiftformat = super.callPackage ./swiftformat.nix { stdenv = self.pkgs.clangStdenv; };
}