b5e34360a7
- Initially tested on Raspberry Pi 4B & Raspberry Pi 3B - Create user + password, enable SSH, connect to local network - Implemented modules: audio-recorder, gps-recorder, real-time-clock, shutdown-button - Deployment option with deploy-rs Signed-off-by: Satu Koskinen <satu.a.koskinen@gmail.com>
17 lines
225 B
Nix
17 lines
225 B
Nix
{
|
|
rustPlatform,
|
|
pkg-config,
|
|
pkgs,
|
|
}:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "shutdown-button";
|
|
version = "0.1.0";
|
|
|
|
src = ./.;
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
allowBuiltinFetchGit = true;
|
|
};
|
|
}
|