2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, systemd }:
|
2018-06-16 15:15:42 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "brightnessctl";
|
2020-02-05 21:21:26 -08:00
|
|
|
version = "0.5.1";
|
2018-06-16 15:15:42 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Hummer12007";
|
|
|
|
repo = "brightnessctl";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2020-02-05 21:21:26 -08:00
|
|
|
sha256 = "0immxc7almmpg80n3bdn834p3nrrz7bspl2syhb04s3lawa5y2lq";
|
2018-06-16 15:15:42 -07:00
|
|
|
};
|
|
|
|
|
2019-10-24 05:54:40 -07:00
|
|
|
makeFlags = [ "PREFIX=" "DESTDIR=$(out)" "ENABLE_SYSTEMD=1" ];
|
2018-06-16 15:15:42 -07:00
|
|
|
|
2019-10-24 05:54:40 -07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ systemd ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-06-16 15:15:42 -07:00
|
|
|
homepage = "https://github.com/Hummer12007/brightnessctl";
|
|
|
|
description = "This program allows you read and control device brightness";
|
2018-11-01 02:08:43 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ megheaiulian ];
|
|
|
|
platforms = platforms.linux;
|
2018-06-16 15:15:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|