This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/shell.nix
2021-11-18 01:59:56 -06:00

18 lines
273 B
Nix

let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
in
pkgs.mkShell {
buildInputs = [
pkgs.git
pkgs.nodejs-16_x
pkgs.yarn
pkgs.dotnet-sdk_5
pkgs.niv
];
shellHooks = ''
export DOTNET_CLI_TELEMETRY_OPTOUT=true
'';
}