about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ba/backlight-auto/package.nix
blob: 5115ae2296735ae0f8d69bc66c68feb2b392577b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, zig, libyuv, fetchFromGitHub }:
stdenv.mkDerivation (finalAttrs: {
  pname = "backlight-auto";
  version = "0.0.1";

  src = fetchFromGitHub {
    owner = "lf94";
    repo = "backlight-auto";
    rev = finalAttrs.version;
    hash = "sha256-QPymwlDrgKM/SXDzJdmfzWLSLU2D7egif1OIUE+SHoI=";
  };

  nativeBuildInputs = [
    zig.hook
  ];

  buildInputs = [
    libyuv
  ];

  meta = with lib; {
    description = "Automatically set screen brightness with a webcam";
    homepage = "https://len.falken.directory/backlight-auto.html";
    license = licenses.mit;
    maintainers = [ maintainers.lf- ];
    platforms = platforms.linux;
  };
})