-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
44 lines (42 loc) · 1.09 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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, flake-parts, ... }:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = nixpkgs.lib.systems.flakeExposed;
perSystem = {
lib,
pkgs,
system,
config,
...
}:
{
_module.args.pkgs = import nixpkgs {
inherit system;
overlays = [
(import inputs.rust-overlay)
];
};
devShells.default = with pkgs; let
# Rust Toolchain
toolchain = pkgs.rust-bin.stable.latest.default.override {
extensions = ["rust-src"];
targets = ["x86_64-unknown-linux-gnu"];
};
in mkShell
{
nativeBuildInputs = with pkgs; [
toolchain
openssl
] ++ lib.optionals stdenv.isLinux [] ++ lib.optionals stdenv.isDarwin [];
};
};
};
}