-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This driver fixes backlight after suspend/resume on Macbook Air 6,1 and 6,2. Added a workaround for patjak/mba6x_bl#43 in form of a systemd service. Has been working great on my machine for at least a month now.
- Loading branch information
1 parent
2634885
commit aac309f
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ fetchFromGitHub, kernel, stdenv }: | ||
|
||
with stdenv.lib; | ||
|
||
let pkgName = "mba6x_bl"; | ||
in | ||
|
||
stdenv.mkDerivation rec { | ||
name = "${pkgName}-2016-02-12"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "patjak"; | ||
repo = pkgName; | ||
rev = "9c2de8a24e7d4e8506170a19d32d6f11f380a142"; | ||
sha256 = "1zaypai8lznqcaszb6an643amsvr5qjnqj6aq6jkr0qk37x0fjff"; | ||
}; | ||
|
||
enableParallelBuilding = true; | ||
|
||
makeFlags = [ | ||
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" | ||
"INSTALL_MOD_PATH=$(out)" | ||
]; | ||
|
||
meta = { | ||
description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver"; | ||
homepage = "https://github.com/patjak/mba6x_bl"; | ||
license = licenses.gpl2; | ||
platforms = platforms.linux; | ||
maintainers = [ maintainers.simonvandel ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters