-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.nix
86 lines (78 loc) · 2.39 KB
/
default.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
# For more, refer to:
# https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/rust.section.md
{pkgs ? import <nixpkgs> {}}: let
lib = pkgs.lib;
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 "";
manifest = (pkgs.lib.importTOML ./Cargo.toml).package;
in
pkgs.rustPlatform.buildRustPackage {
pname = "bot";
version = manifest.version;
cargoLock.lockFile = ./Cargo.lock;
src = pkgs.lib.cleanSource ./.;
nativeBuildInputs = with pkgs; [
gcc
nixd
rustc
cargo
cmake
clippy
gnumake
libiconv
cargo-watch
pkg-config
nixpkgs-fmt
rust-analyzer
llvmPackages.llvm
llvmPackages.clang
];
# Having hard times nix running from macOS 15 Beta?
# add these to your buildInputs:
# darwin.apple_sdk.frameworks.Security
# darwin.apple_sdk.frameworks.CoreServices
# darwin.apple_sdk.frameworks.CoreFoundation
# darwin.apple_sdk.frameworks.SystemConfiguration
buildInputs = with pkgs; [
openssl
libressl
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
(getLibFolder pkgs.gcc)
(getLibFolder pkgs.libiconv)
(getLibFolder pkgs.llvmPackages.llvm)
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
NIX_LDFLAGS = "-L${(getLibFolder pkgs.libiconv)} ${darwinOptions}";
# If you wanna get thorny
# RUST_BACKTRACE = 1;
meta = with lib; {
homepage = manifest.workspace.package.homepage;
description = "Telegram bot manager for Xinux community";
license = with lib.licenses; [gpl3Only];
platforms = with platforms; linux ++ darwin;
maintainers = [
{
name = "Sokhibjon Orzikulov";
email = "[email protected]";
handle = "orzklv";
github = "orzklv";
githubId = 54666588;
keys = [
{
fingerprint = "00D2 7BC6 8707 0683 FBB9 137C 3C35 D3AF 0DA1 D6A8";
}
];
}
];
};
}