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/mba6x_bl/default.nix

31 lines
846 B

{ fetchFromGitHub, kernel, lib, stdenv }:
stdenv.mkDerivation {
pname = "mba6x_bl";
version = "unstable-2016-12-08";
src = fetchFromGitHub {
owner = "patjak";
repo = "mba6x_bl";
rev = "b96aafd30c18200b4ad1f6eb995bc19200f60c47";
sha256 = "10payvfxahazdxisch4wm29fhl8y07ki72q4c78sl4rn73sj6yjq";
};
enableParallelBuilding = true;
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = kernel.makeFlags ++ [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"INSTALL_MOD_PATH=$(out)"
];
meta = with lib; {
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 ];
};
}