20 lines
315 B
Nix
20 lines
315 B
Nix
{
|
|
sources ? import ./npins,
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import sources.nixpkgs {
|
|
inherit system;
|
|
config = { };
|
|
overlays = [ ];
|
|
},
|
|
}:
|
|
{
|
|
shell = pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
dotnetCorePackages.sdk_8_0
|
|
fantomas
|
|
fsautocomplete
|
|
npins
|
|
];
|
|
};
|
|
}
|