summary refs log tree commit diff
path: root/pkgs/misc/brightnessctl/default.nix
blob: f90baee91fcfcf16f8a8c2c50c0e48992c7de72b (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
29
30
{ stdenv, fetchFromGitHub, coreutils }:

stdenv.mkDerivation rec {
  name = "brightnessctl-${version}";
  version = "0.4";

  src = fetchFromGitHub {
    owner = "Hummer12007";
    repo = "brightnessctl";
    rev = "${version}";
    sha256 = "1n1gb8ldgqv3vs565yhk1w4jfvrviczp94r8wqlkv5q6ab43c8w9";
  };

  makeFlags = [ "MODE=0755" "PREFIX=" "DESTDIR=$(out)" ];
  installTargets = [ "install" "install_udev_rules" ];

  postPatch = ''
    substituteInPlace 90-brightnessctl.rules --replace /bin/ ${coreutils}/bin/
    substituteInPlace 90-brightnessctl.rules --replace %k '*'
  '';

  meta = {
    homepage = "https://github.com/Hummer12007/brightnessctl";
    maintainers = [ stdenv.lib.maintainers.Dje4321 ];
    license = stdenv.lib.licenses.mit;
    description = "This program allows you read and control device brightness";
    platforms = stdenv.lib.platforms.linux;
  };

}