-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathshell.nix
More file actions
33 lines (33 loc) · 888 Bytes
/
shell.nix
File metadata and controls
33 lines (33 loc) · 888 Bytes
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
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "sdk";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
nodejs_18
nodePackages.pnpm
protobuf
python312
nodePackages.node-gyp
python312Packages.click
python312Packages.ghp-import
python312Packages.jinja2
python312Packages.markdown
python312Packages.markupsafe
python312Packages.mergedeep
python312Packages.mkdocs
python312Packages.packaging
python312Packages.pathspec
python312Packages.platformdirs
python312Packages.python-dateutil
python312Packages.python-slugify
python312Packages.pyyaml
python312Packages.pyyaml-env-tag
python312Packages.six
python312Packages.text-unidecode
python312Packages.watchdog
libusb1
];
LD_LIBRARY_PATH = "${libusb1.out}/lib";
}