-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathflake.nix
More file actions
128 lines (109 loc) · 3.05 KB
/
flake.nix
File metadata and controls
128 lines (109 loc) · 3.05 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
gitignore = {
url = "github:hercules-ci/gitignore.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
gitignore.follows = "gitignore";
};
};
};
outputs =
{
nixpkgs,
flake-utils,
pre-commit-hooks,
rust-overlay,
treefmt-nix,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ (import rust-overlay) ];
};
inherit (pkgs) mkShell;
rust = pkgs.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
buildTarget = "wasm32-wasip1";
rustPlatform = pkgs.makeRustPlatform {
rustc = rust;
cargo = rust;
};
room-formatter =
(treefmt-nix.lib.evalModule pkgs {
projectRootFile = "flake.nix";
settings = {
allow-missing-formatter = true;
verbose = 0;
global.excludes = [ "*.lock" ];
formatter = {
nixfmt.options = [ "--strict" ];
rustfmt.package = rust;
};
};
programs = {
nixfmt.enable = true;
rustfmt = {
enable = true;
package = rust;
};
taplo.enable = true;
};
}).config.build.wrapper;
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
deadnix.enable = true;
nixfmt-rfc-style.enable = true;
treefmt = {
enable = true;
package = room-formatter;
};
};
};
packages.default = rustPlatform.buildRustPackage rec {
name = "room";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = with pkgs; [ perl ];
buildPhase = ''
cargo build --release --target=${buildTarget}
'';
installPhase = ''
mkdir -p $out/lib/zellij/plugins
cp target/${buildTarget}/release/${name}.wasm $out/lib/zellij/plugins
'';
};
in
{
inherit packages;
checks = { inherit pre-commit-check; };
devShells.default = mkShell {
inherit (pre-commit-check) shellHook;
name = "room";
buildInputs = [
rust
room-formatter
];
};
formatter = room-formatter;
nixosModules.default = import ./. { inherit (packages) default; };
}
);
}