-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
34 lines (32 loc) · 919 Bytes
/
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
{
description = "Development Environment for fd-queue crate.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
rust-overlay.url = "github:oxalica/rust-overlay";
rust-apps.url = "github:sbosnick/rust-apps";
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, rust-apps }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
rust-overlay.overlays.default
rust-apps.overlays.default
];
};
in
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = [
pkgs.rust-bin.stable.latest.default
pkgs.rust-apps.release-plz
pkgs.cargo-edit
pkgs.cargo-outdated
pkgs.cargo-audit
pkgs.cargo-spellcheck
];
};
});
}