Skip to content

Commit

Permalink
flake: clang fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dav009 committed Sep 29, 2023
1 parent ffd61fa commit b67eecb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
src = ./.;
CGO_ENABLED = 1;
preBuild = ''
export CC=clang
export CXX="clang++";
export CC=${pkgs.clang_14}/bin/clang
export CXX=${pkgs.clang_14}/bin/clang++
'';
vendorSha256 =
"sha256-sjg+D0IIErl21HZjXBNKBTqXBZfy6w6EhHYS0seUE3k=";
nativeBuildInputs = with pkgs; [ clang_16 ];
buildInputs = [ pkgs.clang_14 ];
};
default = bqt;
});
Expand Down

0 comments on commit b67eecb

Please sign in to comment.