My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/kbdlight/default.nix

27 lines
679 B

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "kbdlight";
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 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;
};
}