10 lines
119 B
Nix
10 lines
119 B
Nix
{ self, pkgs }:
|
|
|
|
|
|
pkgs.writeShellScriptBin "crs" (''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
cargo test && \
|
|
cargo run
|
|
'')
|