-
Notifications
You must be signed in to change notification settings - Fork 1
/
shell.nix
103 lines (90 loc) · 2.31 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
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
{ pkgs ? import <nixpkgs> { }
,
}:
let
getLibFolder = pkg: "${pkg}/lib";
getFramwork = pkg: "${pkg}/Library/Frameworks";
darwinOptions =
if pkgs.stdenv.isDarwin then
''
-F${(getFramwork pkgs.darwin.apple_sdk.frameworks.Security)}
-F${(getFramwork pkgs.darwin.apple_sdk.frameworks.CoreFoundation)}
-F${(getFramwork pkgs.darwin.apple_sdk.frameworks.CoreServices)}
-F${(getFramwork pkgs.darwin.apple_sdk.frameworks.SystemConfiguration)}
''
else
"";
darwinPkgs =
if pkgs.stdenv.isDarwin then
with pkgs;
[
darwin.apple_sdk.frameworks.Security
darwin.apple_sdk.frameworks.CoreServices
darwin.apple_sdk.frameworks.CoreFoundation
darwin.apple_sdk.frameworks.SystemConfiguration
]
else
[ ];
in
pkgs.stdenv.mkDerivation {
name = "xinux-bots";
nativeBuildInputs = with pkgs; [
# LLVM & GCC
gcc
cmake
gnumake
pkg-config
llvmPackages.llvm
llvmPackages.clang
# Hail the Nix
nixd
nixpkgs-fmt
nixpkgs-lint
# Launch scripts
just
# Rust
rustc
cargo
clippy
cargo-watch
rust-analyzer
];
buildInputs =
with pkgs;
[
openssl
]
++ darwinPkgs;
# Set Environment Variables
RUST_BACKTRACE = 1;
NIX_LDFLAGS = "-L${(getLibFolder pkgs.libiconv)} ${darwinOptions}";
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
(getLibFolder pkgs.gcc)
(getLibFolder pkgs.libiconv)
(getLibFolder pkgs.llvmPackages.llvm)
];
shellHook = ''
# Load the environment variables from the .env file
if [ ! -f .env ]; then
echo "Please enter your telegram bot token: ";
read -r TELOXIDE_TOKEN;
echo "TELOXIDE_TOKEN=$TELOXIDE_TOKEN" > .env;
else
source .env;
fi
# Set the environment variable
# export TELOXIDE_TOKEN=$TELOXIDE_TOKEN;
# Start watching for changes
# Start watching for changes in the background
# cargo watch -x "run --bin xinuxmgr" &
# Store the PID of the background process
# CARGO_WATCH_PID=$!
# Function to clean up the background process on exit
# cleanup() {
# kill $CARGO_WATCH_PID
# }
# Trap EXIT signal to run cleanup function
# trap cleanup EXIT
'';
}