Skip to content

Commit

Permalink
retry
Browse files Browse the repository at this point in the history
  • Loading branch information
dav009 committed Sep 30, 2023
1 parent 441f2ee commit 2353bd5
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions flake.nix
Expand Up @@ -28,12 +28,20 @@
src = ./.;
CGO_ENABLED = 1;
preBuild = ''
export CC=${pkgs.clang_14}/bin/clang
export CXX=${pkgs.clang_14}/bin/clang++
export CC=${pkgs.clang_14}/bin/clang
export CXX=${pkgs.clang_14}/bin/clang++
'';
vendorSha256 =
"sha256-sjg+D0IIErl21HZjXBNKBTqXBZfy6w6EhHYS0seUE3k=";
buildInputs = [ pkgs.clang_14 ];
LD_LIBRARY_PATH = (pkgs.lib.strings.makeLibraryPath [
pkgs.stdenv.cc.cc.lib
pkgs.llvmPackages_14.libclang.lib
]);
buildInputs = [
pkgs.clang_14
pkgs.llvmPackages_14.llvm
pkgs.llvmPackages_14.libclang
];
};
default = bqt;
});
Expand Down

0 comments on commit 2353bd5

Please sign in to comment.