shells/dotnet: init

This commit is contained in:
Gabriel Arazas 2025-04-05 12:14:18 +08:00
parent a7d3111d3e
commit 6588f916f3
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,8 @@
with pkgs; {
cloud = callPackage ./cloud.nix { };
creatives = callPackage ./creatives.nix { };
dotnet_8 = callPackage ./dotnet.nix { dotnet-sdk = dotnet-sdk_8; dotnet-runtime = dotnet-runtime_8; };
dotnet_9 = callPackage ./dotnet.nix { dotnet-sdk = dotnet-sdk_9; dotnet-runtime = dotnet-runtime_9; };
flatpak = callPackage ./flatpak.nix { };
gnu = callPackage ./gnu.nix { };
gnome = callPackage ./gnome.nix { };

10
shells/dotnet.nix Normal file
View File

@ -0,0 +1,10 @@
{ lib, dotnet-runtime, dotnet-sdk, mkShell }:
mkShell {
packages = [
dotnet-runtime
dotnet-sdk
];
inputsFrom = [ dotnet-sdk ];
}