flake: add devShells
exposed via nix registry :D can be used in nix-direnv like `use flake shells#cs.osu`
This commit is contained in:
parent
8c75ba2a2d
commit
76b6f7cfb8
11 changed files with 283 additions and 0 deletions
14
shells/cs/default.nix
Normal file
14
shells/cs/default.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
callPackage,
|
||||
lib,
|
||||
mkShell,
|
||||
dotnetCorePackages
|
||||
}:
|
||||
mkShell {
|
||||
nativeBuildInputs = [ (with dotnetCorePackages; combinePackages [ sdk_6_0 runtime_6_0 ]) ];
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = 1;
|
||||
|
||||
passthru = {
|
||||
osu = callPackage ./osu.nix {};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue