-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
59 lines (52 loc) · 1.7 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
57
58
59
{
description = "Nix development environment for Ziggurat";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
rust-overlay.url = "github:oxalica/rust-overlay";
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, ... }:
flake-utils.lib.eachDefaultSystem
(system:
let
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
inherit system overlays;
};
# Latest stable rust without rustfmt.
stable-rust = pkgs.rust-bin.stable.latest.minimal.override {
extensions = [ "clippy" "rust-docs" ];
};
# Latest nightly rust with rustfmt.
nightly-rust = pkgs.rust-bin.selectLatestNightlyWith
(toolchain: toolchain.minimal.override {
extensions = [ "rustfmt" ];
});
buildInputs = with pkgs; [
stable-rust
nightly-rust
cargo-sort
openssl
pkg-config
];
in
{
inherit buildInputs;
lib = import ./lib.nix { inherit pkgs; };
devShells.default = pkgs.mkShell {
buildInputs = self.buildInputs.${system}
++ (self.lib.${system}.mkCiScripts self.scripts);
};
}) // {
scripts = {
check = "cargo check --all-targets";
fmt = "cargo fmt --all -- --check";
clippy = "cargo clippy --all-targets -- -D warnings";
sort = "cargo-sort --check --workspace";
};
templates.default = {
path = ./nix-template;
description = "Nix template for working with Ziggurat";
};
};
}