-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
shell.nix
50 lines (48 loc) · 878 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{pkgs ? import <nixpkgs> {}}: let
python = pkgs.python312.withPackages (ps:
with ps; [
guessit
aiohttp
jsons
watchfiles
pika
aio-pika
requests
dataclasses-json
msgspec
langcodes
# robotframework
# restinstance needs to be packaged
]);
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
ffmpeg-full
postgresql_15
pgformatter
biome
kubernetes-helm
go-migrate
sqlc
go-swag
robotframework-tidy
];
DOTNET_ROOT = "${dotnet}";
}