-
-
Notifications
You must be signed in to change notification settings - Fork 413
/
shell.nix
42 lines (37 loc) · 927 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
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
# nativeBuildInputs is usually what you want -- tools you need to run
nativeBuildInputs = with pkgs; with qt6; [
just
crowdin-cli
cmake
qmake
qttools
wrapQtAppsHook
pkg-config
libclang # for clang-format
xmlstarlet # for download-icons.sh and download_translations.sh
lychee # for link checking
lurk # strace replacement
procs # fetches process info
gawk # for parsing procs output
fzf # for interactive process selection
# for ./build-systems/github/build-github-src.sh
coreutils
gh
# for shell scripts
findutils
gnused
ripgrep
];
buildInputs = with pkgs; with qt6; [
qtbase
qtwebsockets
qtdeclarative
qtsvg
botan2
];
shellHook = ''
echo "qmake: $(qmake --version)"
'';
}