-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathflake.nix
More file actions
74 lines (65 loc) · 1.95 KB
/
flake.nix
File metadata and controls
74 lines (65 loc) · 1.95 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
description = "A bracket-based lightweight markup language that extends commands with WebAssembly";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem =
{
config,
self',
inputs',
pkgs,
system,
...
}:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(import inputs.rust-overlay)
];
};
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
nil
(rust-bin.stable.latest.default.override {
extensions = [ "rust-src" ];
})
rust-analyzer
];
};
packages.default = pkgs.callPackage ./nix/build.nix {
doCheck = false;
};
formatter = pkgs.nixfmt-rfc-style;
checks = {
cargo-test = pkgs.callPackage ./nix/build.nix { };
cargo-fmt-check = pkgs.callPackage ./nix/cargo-fmt-check.nix { };
nixfmt-check = pkgs.callPackage ./nix/nixfmt-check.nix { };
clippy-check = pkgs.callPackage ./nix/clippy-check.nix { };
actionlint-check = pkgs.callPackage ./nix/actionlint-check.nix { };
};
apps.default = {
type = "app";
program = "${self'.packages.default}/bin/brack";
};
apps.brack-release = {
type = "app";
program = "${self'.packages.default}/bin/brack-release";
};
};
};
}