24 lines
791 B
Nix
24 lines
791 B
Nix
{ rustPlatform, fetchgit, stdenv, mosquitto, cmake, openssl, ... }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "light-${version}";
|
|
version = "0.1.0";
|
|
src = fetchgit {
|
|
url = "https://git.ingolf-wagner.de/palo/light-control.git";
|
|
rev = "2009a829681c32127cc8b74dac759db566fe9599";
|
|
sha256 = "0hqrnqbzwpvgpx8sb13m89kz60pv6xgym3dhp3q56383hafijb4c";
|
|
};
|
|
|
|
cargoSha256 = "1yzkbj36sx4vc8dsgcxahrvn33ci2ad1cpd1shcismw33k63rimh";
|
|
#verifyCargoDeps = true;
|
|
|
|
buildInputs = [ mosquitto openssl cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "light control over mqtt, with scenes and room tracking";
|
|
homepage = "https://github.com/mrVanDalo/light-control";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.mrVanDalo ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|