lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 26 lines 720 B view raw
1{ lib, buildGoModule, fetchFromGitHub, nixosTests }: 2 3buildGoModule rec { 4 pname = "keylight-exporter"; 5 version = "0.1.1"; 6 7 src = fetchFromGitHub { 8 owner = "mdlayher"; 9 repo = "keylight_exporter"; 10 rev = "v${version}"; 11 sha256 = "141npawcnxj3sz2xqsnyf06r4x1azk3g55941i8gjr7pwcla34r7"; 12 }; 13 14 vendorSha256 = "0w065ls8dp687jmps4xdffcarss1wyls14dngr43g58xjw6519gb"; 15 16 doCheck = false; 17 18 passthru.tests = { inherit (nixosTests.prometheus-exporters) keylight; }; 19 20 meta = with lib; { 21 homepage = "https://github.com/mdlayher/keylight_exporter"; 22 description = "Prometheus exporter for Elgato Key Light devices"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ mdlayher ]; 25 }; 26}