-
Notifications
You must be signed in to change notification settings - Fork 4
/
shell.nix
61 lines (56 loc) · 1.5 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
{ pkgs ? import <nixpkgs> { }
, android ? fetchTarball "https://github.com/tadfisher/android-nixpkgs/archive/refs/tags/2024-04-02.tar.gz"
, use_android ? false
, android_emulator ? false
}:
with pkgs;
let
x11libs = lib.makeLibraryPath [ xorg.libX11 xorg.libXcursor xorg.libXrandr xorg.libXi libglvnd vulkan-loader vulkan-validation-layers libxkbcommon ];
android-nixpkgs = callPackage android { };
ndk-version = "24.0.8215888";
android-sdk = android-nixpkgs.sdk (sdkPkgs: with sdkPkgs; [
cmdline-tools-latest
build-tools-34-0-0
platform-tools
platforms-android-30
ndk-24-0-8215888
] ++ lib.optionals android_emulator [emulator]);
android-sdk-path = "${android-sdk.out}/share/android-sdk";
android-ndk-path = "${android-sdk-path}/ndk/${ndk-version}";
in
mkShell ({
buildInputs = [] ++ lib.optional use_android [
android-sdk
];
nativeBuildInputs = [
#cargo-udeps
#cargo-edit
#cargo-watch
rustup
rustfmt
trunk
libiconv
pkg-config
#cmake
fontconfig
openssl
#brotli
#wabt
#gdb
#heaptrack
] ++ lib.optional use_android [
jre
openssl
libiconv
cargo-apk
] ++ lib.optional stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.OpenGL
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.AppKit
];
} // (if !stdenv.isDarwin then {
LD_LIBRARY_PATH="${x11libs}";
} else {}) // (if use_android then {
ANDROID_NDK_ROOT = android-ndk-path;
} else {}))