571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ buildGoModule, fetchFromGitHub, lib, libGL, nssmdns, pkg-config, xorg }:
|
|
|
|
buildGoModule rec {
|
|
pname = "keylight-controller-mschneider82";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mschneider82";
|
|
repo = "keylight-control";
|
|
rev = "v${version}";
|
|
hash = "sha256-xC/JRM8vyqAsxPpf37P3pZv6i73s+CLQt6Sh4nMxwzM=";
|
|
};
|
|
|
|
vendorHash = "sha256-nFttVJbEAAGsrAglMphuw0wJ2Kf8sWB4HrpVqfHO76o=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libGL
|
|
nssmdns
|
|
] ++ (with xorg; [
|
|
libX11
|
|
libX11.dev
|
|
libXcursor
|
|
libXext
|
|
libXi
|
|
libXinerama
|
|
libXrandr
|
|
libXxf86vm
|
|
xinput
|
|
]);
|
|
|
|
meta = with lib; {
|
|
description = "Desktop application to control Elgato Keylights";
|
|
longDescription = ''
|
|
Requires having:
|
|
* Elgato's Keylight paired to local wifi network.
|
|
* Service avahi with nssmdns4 enabled.
|
|
'';
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/mschneider82/keylight-control";
|
|
maintainers = [ ];
|
|
mainProgram = "keylight-control";
|
|
};
|
|
}
|
|
|
|
# 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`
|