mirror of https://github.com/materusPL/Nixerus.git
lh2ctrl: add meta
This commit is contained in:
parent
d6f0de8b52
commit
b810eb9727
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, python3, fetchFromGitHub}:
|
{ stdenv, python3, fetchFromGitHub, lib}:
|
||||||
stdenv.mkDerivation
|
stdenv.mkDerivation
|
||||||
rec {
|
rec {
|
||||||
pname = "lh2ctrl";
|
pname = "lh2ctrl";
|
||||||
|
@ -18,4 +18,12 @@ stdenv.mkDerivation
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = "install -Dm755 ${src + "/pylh2ctrl/lh2ctrl.py"} $out/bin/lh2ctrl";
|
installPhase = "install -Dm755 ${src + "/pylh2ctrl/lh2ctrl.py"} $out/bin/lh2ctrl";
|
||||||
}
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Power management of Valve v2 lighthouses over Bluetooth LE";
|
||||||
|
homepage = "https://github.com/risa2000/lh2ctrl";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue