Skip to content

Commit

Permalink
Merge pull request #190091 from strager/qljs-missing-libstdcxx
Browse files Browse the repository at this point in the history
quick-lint-js: work around CMake bug causing missing libstdc++.so.6
  • Loading branch information
bobby285271 committed Sep 18, 2022
2 parents 2b87df5 + 347f44d commit 04ab3d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/tools/quick-lint-js/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; };
};
Expand Down

0 comments on commit 04ab3d3

Please sign in to comment.