connect to csharp
This commit is contained in:
parent
0261b94820
commit
b88ff96b32
16 changed files with 336 additions and 63 deletions
20
shell.nix
Normal file
20
shell.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs ? import
|
||||
(builtins.fetchTarball {
|
||||
url = "https://github.com/NixOS/nixpkgs/archive/refs/heads/nixos-24.11.tar.gz";
|
||||
})
|
||||
{ }
|
||||
}:
|
||||
|
||||
pkgs.mkShell {
|
||||
name = "dotnet-rust-env";
|
||||
|
||||
buildInputs = [
|
||||
pkgs.dotnetCorePackages.sdk_8_0
|
||||
pkgs.rustup
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export PATH=$HOME/.cargo/bin:$PATH
|
||||
'';
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue