You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use [Nix flakes](https://nixos.wiki/wiki/Flakes) to run or build `rmxt` without installing Rust or any dependencies manually. This is the recommended method for Nix users.
- Flakes enabled (see [NixOS Wiki: Flakes](https://nixos.wiki/wiki/Flakes#Installing_flakes))
31
+
32
+
### Run `rmxt` directly (no install)
33
+
34
+
```bash
35
+
nix run github:santoshxshrestha/rmxt
36
+
```
37
+
38
+
Or, if you have cloned the repo:
39
+
40
+
```bash
41
+
nix run .
42
+
```
43
+
44
+
This will build and run the latest `rmxt` binary in a temporary environment.
45
+
46
+
### Build the binary
47
+
48
+
```bash
49
+
nix build github:santoshxshrestha/rmxt
50
+
```
51
+
52
+
Or, from a local clone:
53
+
54
+
```bash
55
+
nix build
56
+
```
57
+
58
+
The compiled binary will be available at `./result/bin/rmxt`.
59
+
60
+
### Development shell
61
+
62
+
For contributors, you can enter a shell with all development dependencies:
63
+
64
+
```bash
65
+
nix develop
66
+
```
67
+
68
+
### Notes
69
+
- The provided flake currently supports `x86_64-linux`.
70
+
- For more details on Nix flakes, see the [NixOS Wiki](https://nixos.wiki/wiki/Flakes) or [Practical Nix Flakes](https://serokell.io/blog/practical-nix-flakes).
0 commit comments