mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
09d85c49c4
Looks like NixOS creates a security wrapper for this already, FWIW.
28 lines
689 B
Nix
28 lines
689 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kbdlight-${version}";
|
|
version = "1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hobarrera";
|
|
repo = "kbdlight";
|
|
rev = "v${version}";
|
|
sha256 = "1f08aid1xrbl4sb5447gkip9lnvkia1c4ap0v8zih5s9w8v72bny";
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace Makefile \
|
|
--replace /usr/local $out \
|
|
--replace 4755 0755
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/hobarrera/kbdlight;
|
|
description = "A very simple application that changes MacBooks' keyboard backlight level";
|
|
license = licenses.isc;
|
|
maintainers = [ maintainers.womfoo ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|