2018-09-30 12:11:56 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, coreutils }:
|
2014-11-10 02:32:11 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-30 12:11:56 +01:00
|
|
|
version = "1.2";
|
2014-11-10 02:32:11 +00:00
|
|
|
name = "light-${version}";
|
2018-08-07 23:56:39 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "haikarainen";
|
|
|
|
repo = "light";
|
2018-09-30 12:11:56 +01:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1h286va0r1xgxlnxfaaarrj3qhxmjjsivfn3khwm0wq1mhkfihra";
|
2014-11-10 02:32:11 +00:00
|
|
|
};
|
2018-08-07 23:56:39 +01:00
|
|
|
|
2018-09-30 12:11:56 +01:00
|
|
|
configureFlags = [ "--with-udev" ];
|
2014-11-10 02:32:11 +00:00
|
|
|
|
2018-09-30 12:11:56 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2014-11-10 02:32:11 +00:00
|
|
|
|
2018-09-30 12:11:56 +01:00
|
|
|
# ensure udev rules can find the commands used
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace 90-backlight.rules \
|
|
|
|
--replace '/bin/chgrp' '${coreutils}/bin/chgrp' \
|
|
|
|
--replace '/bin/chmod' '${coreutils}/bin/chmod'
|
|
|
|
'';
|
2016-11-06 02:47:22 +00:00
|
|
|
|
2014-11-10 02:32:11 +00:00
|
|
|
meta = {
|
|
|
|
description = "GNU/Linux application to control backlights";
|
|
|
|
homepage = https://haikarainen.github.io/light/;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2018-09-30 12:11:56 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ puffnfresh dtzWill ];
|
2014-11-10 02:32:11 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|