Get nix-ld to work with the Roslyn analyzer
This commit is contained in:
parent
5b4758a4ed
commit
0fd9c93a70
|
@ -2,7 +2,7 @@
|
||||||
"terminal.integrated.profiles.linux": {
|
"terminal.integrated.profiles.linux": {
|
||||||
"nix develop": {
|
"nix develop": {
|
||||||
"path": "nix",
|
"path": "nix",
|
||||||
"args": ["develop"]
|
"args": ["develop", "--impure"]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"terminal.integrated.profiles.windows": {
|
"terminal.integrated.profiles.windows": {
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
in rec {
|
in rec {
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT = 1;
|
DOTNET_CLI_TELEMETRY_OPTOUT = 1;
|
||||||
|
NIX_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ pkgs.stdenv.cc.cc ];
|
||||||
|
NIX_LD = builtins.readFile "${pkgs.stdenv.cc}/nix-support/dynamic-linker";
|
||||||
packages = [
|
packages = [
|
||||||
pkgs.bashInteractive
|
pkgs.bashInteractive
|
||||||
pkgs.dotnet-sdk_8
|
pkgs.dotnet-sdk_8
|
||||||
|
|
Loading…
Reference in New Issue