Kyoo/shell.nix
2024-03-23 13:17:11 +01:00

40 lines
677 B
Nix

{pkgs ? import <nixpkgs> {}}: let
python = pkgs.python311.withPackages (ps:
with ps; [
guessit
aiohttp
jsons
watchfiles
pika
]);
dotnet = with pkgs.dotnetCorePackages;
combinePackages [
sdk_8_0
aspnetcore_8_0
aspnetcore_6_0
];
in
pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodePackages.yarn
nodePackages.eas-cli
nodePackages.expo-cli
dotnet
csharpier
python
ruff
go
wgo
mediainfo
libmediainfo
ffmpeg-full
postgresql_15
eslint_d
prettierd
pgformatter
];
DOTNET_ROOT = "${dotnet}";
}