Merge pull request #190091 from strager/qljs-missing-libstdcxx

quick-lint-js: work around CMake bug causing missing libstdc++.so.6
This commit is contained in:
Bobby Rong 2022-09-18 20:46:41 +08:00 committed by GitHub
commit 04ab3d3b45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ninja ];
doCheck = true;
# Temporary workaround for https://github.com/NixOS/nixpkgs/pull/108496#issuecomment-1192083379
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=ON" ];
passthru.tests = {
version = testers.testVersion { package = quick-lint-js; };
};