mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
32 lines
897 B
Nix
32 lines
897 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, coreutils }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.1";
|
|
pname = "light";
|
|
src = fetchFromGitHub {
|
|
owner = "haikarainen";
|
|
repo = "light";
|
|
rev = "v${version}";
|
|
sha256 = "0zrjipd392bzjvxx0rjrb0cgi0ix1d83fwgw1mcy8kc4d16cgyjg";
|
|
};
|
|
|
|
configureFlags = [ "--with-udev" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
# 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'
|
|
'';
|
|
|
|
meta = {
|
|
description = "GNU/Linux application to control backlights";
|
|
homepage = "https://haikarainen.github.io/light/";
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = with stdenv.lib.maintainers; [ puffnfresh dtzWill ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|