From 1233ae14cc98056fe2937dceb79e9176d58e03cd Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Thu, 16 Feb 2023 19:21:43 +0100 Subject: [PATCH] Fix compilation in tap shell --- shells/tap.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shells/tap.nix b/shells/tap.nix index e9e11f7c..6956d597 100644 --- a/shells/tap.nix +++ b/shells/tap.nix @@ -12,6 +12,9 @@ yarn ]; env = [ + { name = "CC"; value = "cc"; } + { name = "CPP"; value = "cpp"; } + { name = "CXX"; value = "c++"; } { name = "GEM_HOME"; eval = "$PRJ_DATA_DIR/bundle/$(ruby -e 'puts RUBY_VERSION')"; } { name = "PATH"; prefix = "$GEM_HOME/bin"; } ];