nixpkgs-suyu/pkgs/os-specific/linux/nvidiabl/default.nix

36 lines
926 B
Nix
Raw Normal View History

2017-03-02 16:10:23 +01:00
{ stdenv, fetchFromGitHub, kernel }:
2014-03-07 16:08:38 +01:00
2017-03-02 16:10:23 +01:00
stdenv.mkDerivation rec {
name = "nvidiabl-${version}-${kernel.version}";
version = "0.87";
2014-03-07 16:08:38 +01:00
2017-03-02 16:10:23 +01:00
src = fetchFromGitHub {
owner = "guillaumezin";
repo = "nvidiabl";
rev = "v${version}";
sha256 = "1hs61dxn84vsyvrd2s899dhgg342mhfkbdn1nkhcvly45hdp2nca";
2014-03-07 16:08:38 +01:00
};
hardeningDisable = [ "pic" ];
patches = [ ./linux4compat.patch ];
2014-03-07 16:08:38 +01:00
preConfigure = ''
sed -i 's|/sbin/depmod|#/sbin/depmod|' Makefile
'';
makeFlags = [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"DESTDIR=$(out)"
"KVER=${kernel.modDirVersion}"
2014-03-07 16:08:38 +01: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;
platforms = stdenv.lib.platforms.linux;
broken = !stdenv.lib.versionOlder kernel.version "4.9";
2014-03-07 16:08:38 +01:00
};
}