2023-10-03 14:50:21 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, pkg-config, sqlite }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "raspi-oled";
|
|
|
|
version = "unstable-infdev-4";
|
|
|
|
|
|
|
|
src = ./.;
|
|
|
|
|
|
|
|
cargoLock = {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
outputHashes = {
|
2023-10-12 12:42:54 +00:00
|
|
|
"ssd1351-0.3.0" = "sha256-DD7+NhYwUwD/xC+7ZUNKdhcfsSCOQ9NVEy9lcS47Q5E=";
|
2023-10-03 14:50:21 +00:00
|
|
|
# "gpio-am2302-rs-1.1.0" = "sha256-tyA/R80LtWIXoVEoxHhkmzy0IsMdMH1Oi3FTQ56XjyQ=";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2023-10-05 10:56:25 +00:00
|
|
|
cargoBuildFlags = [ "--no-default-features" "--bin" "main_loop" ];
|
2023-10-03 14:50:21 +00:00
|
|
|
|
|
|
|
buildInputs = [ sqlite ];
|
|
|
|
|
|
|
|
RUSTC_BOOTSTRAP = "1";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "OLED display of clock/calendar/temperature";
|
|
|
|
homepage = "https://github.com/FliegendeWurst/raspi-oled";
|
2023-10-04 10:42:30 +00:00
|
|
|
license = licenses.gpl3;
|
2023-10-03 14:50:21 +00:00
|
|
|
maintainers = with maintainers; [ fliegendewurst ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|