forked from MarcelCoding/zia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
55 lines (51 loc) · 1.49 KB
/
flake.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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = (import nixpkgs) {
inherit system;
};
inherit (pkgs) rustPackages;
in
{
packages = {
zia-client = pkgs.callPackage ./derivation.nix {
cargoToml = ./zia-client/Cargo.toml;
};
zia-server = pkgs.callPackage ./derivation.nix {
cargoToml = ./zia-server/Cargo.toml;
};
};
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
# Compiler and linker
rustPackages.rustc
clang_15
llvmPackages.lld
# Native dependencies
pkg-config
rustPackages.cargo
# Utilities
cargo-deny
cargo-outdated
rustPackages.clippy
rustPackages.rustfmt
];
RUST_SRC_PATH = "${rustPackages.rustPlatform.rustLibSrc}";
CI_COMMIT_SHA = builtins.getEnv "CI_COMMIT_SHA";
};
}
) // {
overlays.default = _: prev: {
inherit (self.packages."${prev.system}") zia-client zia-server;
};
nixosModules = {
zia-server = import ./nixos-modules/zia-server.nix;
};
};
}