2014-03-07 15:08:38 +00:00
|
|
|
{ stdenv, fetchurl, kernel }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "nvidiabl-0.85-${kernel.version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/guillaumezin/nvidiabl/archive/v0.85.tar.gz";
|
|
|
|
sha256 = "1c7ar39wc8jpqh67sw03lwnyp0m9l6dad469ybqrgcywdiwxspwj";
|
|
|
|
};
|
|
|
|
|
2016-08-13 14:44:39 +00:00
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
|
2015-11-14 20:32:51 +00:00
|
|
|
patches = [ ./linux4compat.patch ];
|
|
|
|
|
2014-03-07 15:08:38 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's|/sbin/depmod|#/sbin/depmod|' Makefile
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
|
|
"DESTDIR=$(out)"
|
2015-03-18 01:17:24 +00:00
|
|
|
"KVER=${kernel.modDirVersion}"
|
2014-03-07 15:08:38 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Linux driver for setting the backlight brightness on laptops using NVIDIA GPU";
|
|
|
|
homepage = https://github.com/guillaumezin/nvidiabl;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|