forked from kuviman/kuvibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
56 lines (53 loc) · 1.72 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
56
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
systems = {
url = "github:nix-systems/default";
flake = false;
};
};
outputs = { self, nixpkgs, rust-overlay, systems }:
let
inherit (nixpkgs) lib;
eachSystem = lib.genAttrs (import systems);
pkgsFor = eachSystem (system:
import nixpkgs {
localSystem = system;
overlays = [ rust-overlay.overlays.default ];
});
in
{
devShells = eachSystem (system:
let
pkgs = pkgsFor.${system};
rust-stable = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "rust-src" "rust-docs" "clippy" ];
};
in
{
default = with pkgs;
mkShell {
strictDeps = true;
packages = [
# Derivations in `rust-stable` take precedence over nightly.
(lib.hiPrio rust-stable)
# Use rustfmt, and other tools that require nightly features.
(pkgs.rust-bin.selectLatestNightlyWith
(toolchain:
toolchain.minimal.override {
extensions = [ "rustfmt" "rust-analyzer" ];
}))
# Native transitive dependencies for Cargo
pkg-config
openssl
];
OPENSSL_LIB_DIR = "${openssl.out}/lib";
OPENSSL_ROOT_DIR = "${openssl.out}";
OPENSSL_INCLUDE_DIR = "${openssl.dev}/include";
# RUST_BACKTRACE = 1;
};
});
formatter = eachSystem (system: pkgsFor.${system}.nixpkgs-fmt);
};
}