-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathflake.nix
104 lines (94 loc) · 2.73 KB
/
flake.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
nixpkgs-master,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
pkgs-master = import nixpkgs-master {
inherit system;
config.allowUnfree = true;
};
linuxOnlyPkgs =
with pkgs;
if system == "x86_64-linux" then
[
cudaPackages_12.cudnn
cudaPackages_12.libcublas
cudaPackages_12.libcurand
cudaPackages_12.libcufft
cudaPackages_12.cuda_cudart
cudaPackages_12.cuda_nvrtc
]
else
[ ];
# https://github.com/nixos/nixpkgs/issues/278976#issuecomment-1879685177
# NOTE: Without adding `/run/...` the following error occurs
# RuntimeError: CUDA failed with error CUDA driver version is insufficient for CUDA runtime version
#
# NOTE: sometimes it still doesn't work but rebooting the system fixes it
# TODO: check if `LD_LIBRARY_PATH` needs to be set on MacOS
linuxLibPath =
if system == "x86_64-linux" then
"/run/opengl-driver/lib:${
pkgs.lib.makeLibraryPath [
# Needed for `faster-whisper`
pkgs.cudaPackages_12.cudnn
pkgs.cudaPackages_12.libcublas
# The 4 cuda packages below are needed for `onnxruntime-gpu`
pkgs.cudaPackages_12.libcurand
pkgs.cudaPackages_12.libcufft
pkgs.cudaPackages_12.cuda_cudart
pkgs.cudaPackages_12.cuda_nvrtc
# Needed for `soundfile`
pkgs.portaudio
pkgs.zlib
pkgs.stdenv.cc.cc
pkgs.openssl
]
}"
else
"";
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs =
with pkgs;
[
act
docker
docker-compose
ffmpeg-full
go-task
grafana-loki
parallel
pv
python312
tempo
uv
websocat
]
++ linuxOnlyPkgs;
LD_LIBRARY_PATH = linuxLibPath;
shellHook = ''
source .venv/bin/activate
source .env
'';
};
formatter = pkgs.nixfmt;
}
);
}