Merge pull request #168735 from superherointj/package-keylight-controller-0.1.0

keylight-controller-mschneider82: init 0.1.0
This commit is contained in:
Sandro 2022-04-18 00:58:58 +02:00 committed by GitHub
commit 4def7c4594
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,53 @@
{ buildGoModule, fetchFromGitHub, lib, libGL, nssmdns, pkg-config, xorg }:
buildGoModule rec {
pname = "keylight-controller-mschneider82";
version = "0.1.0";
src = fetchFromGitHub {
owner = "mschneider82";
repo = "keylight-control";
rev = "v${version}";
sha256 = "sha256-UZfbGihCgFBQE1oExuzCexoNgpVGwNoA9orjZ9fh4gA=";
};
vendorSha256 = "sha256-nFttVJbEAAGsrAglMphuw0wJ2Kf8sWB4HrpVqfHO76o=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libGL
nssmdns
] ++ (with xorg; [
libX11
libX11.dev
libXcursor
libXext
libXi
libXinerama
libXrandr
libXxf86vm
xinput
]);
meta = with lib; {
description = "A desktop application to control Elgato Keylights";
longDescription = ''
Requires having:
* Elgato's Keylight paired to local wifi network.
* Service avahi with nssmdns enabled.
'';
license = licenses.mit;
homepage = "https://github.com/mschneider82/keylight-control";
maintainers = with maintainers; [ superherointj ];
};
}
# Note: Application errors on first executions but works on re-runs.
# Troubleshooting
# 1. Keylight lists at: `avahi-browse --all --resolve --ignore-local`
# 2. Ping Keylight's IP
# 3. Resolve Keylight's hostname: `getent hosts elgato-key-light-XXXX.local`

View file

@ -26615,6 +26615,8 @@ with pkgs;
jackline = callPackage ../applications/networking/instant-messengers/jackline { };
keylight-controller-mschneider82 = callPackage ../applications/misc/keylight-controller-mschneider82 { };
leftwm = callPackage ../applications/window-managers/leftwm { };
levant = callPackage ../applications/networking/cluster/levant { };