mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 12:02:47 +00:00
35 lines
826 B
Nix
35 lines
826 B
Nix
|
{ stdenv, fetchFromGitLab , go-md2man, coreutils, substituteAll }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "brillo";
|
||
|
version = "1.4.8";
|
||
|
|
||
|
src = fetchFromGitLab {
|
||
|
owner= "cameronnemo";
|
||
|
repo= "brillo";
|
||
|
rev= "v${version}";
|
||
|
sha256 = "0wxvg541caiwm3bjwbmk7xcng7jd9xsiga2agxwp7gpkrlp74j9f";
|
||
|
};
|
||
|
|
||
|
patches = [
|
||
|
(substituteAll {
|
||
|
src = ./udev-rule.patch;
|
||
|
inherit coreutils;
|
||
|
})
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [ go-md2man ];
|
||
|
|
||
|
makeFlags = [ "PREFIX=$(out)" "AADIR=$(out)/etc/apparmor.d" ];
|
||
|
|
||
|
installTargets = "install-dist";
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Backlight and Keyboard LED control tool";
|
||
|
homepage = https://gitlab.com/cameronnemo/brillo;
|
||
|
license = [ licenses.gpl3 licenses.bsd0 ];
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = [ maintainers.alexarice ];
|
||
|
};
|
||
|
}
|