nixpkgs/pkgs/os-specific/linux/brillo/default.nix

35 lines
830 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab , go-md2man, coreutils, substituteAll }:
2019-04-14 10:53:43 +01:00
stdenv.mkDerivation rec {
pname = "brillo";
2019-11-25 14:08:30 +00:00
version = "1.4.9";
2019-04-14 10:53:43 +01:00
src = fetchFromGitLab {
owner= "cameronnemo";
repo= "brillo";
rev= "v${version}";
2019-11-25 14:08:30 +00:00
sha256 = "0ab7s60zcgl6hvm0a9rlwq35p25n3jnw6r9256pwl4cdwyjyybsb";
2019-04-14 10:53:43 +01:00
};
patches = [
(substituteAll {
src = ./udev-rule.patch;
inherit coreutils;
})
];
nativeBuildInputs = [ go-md2man ];
makeFlags = [ "PREFIX=$(out)" "AADIR=$(out)/etc/apparmor.d" ];
2019-11-09 23:52:53 +00:00
installTargets = [ "install-dist" ];
2019-04-14 10:53:43 +01:00
meta = with lib; {
2019-04-14 10:53:43 +01:00
description = "Backlight and Keyboard LED control tool";
homepage = "https://gitlab.com/cameronnemo/brillo";
2019-04-14 10:53:43 +01:00
license = [ licenses.gpl3 licenses.bsd0 ];
platforms = platforms.linux;
maintainers = [ maintainers.alexarice ];
};
}