Files
fvcomstats/default.nix

23 lines
348 B
Nix

{
sources ? import ./nix,
pkgs ? import sources.nixpkgs { },
}:
let
dotnet-sdk = pkgs.dotnetCorePackages.sdk_9_0;
in
{
shell = pkgs.mkShell {
packages = with pkgs; [
npins
bun
fantomas
fsautocomplete
dotnet-sdk
];
DOTNET_ROOT = "${dotnet-sdk}/share/dotnet";
NPINS_DIRECTORY = "./nix";
};
}