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

37 lines
1 KiB
Nix
Raw Normal View History

2017-03-02 15:10:23 +00:00
{ stdenv, fetchFromGitHub, kernel }:
2014-03-07 15:08:38 +00:00
2017-03-02 15:10:23 +00:00
stdenv.mkDerivation rec {
name = "nvidiabl-${version}-${kernel.version}";
version = "2017-09-26";
2014-03-07 15:08:38 +00:00
# We use a fork which adds support for newer kernels -- upstream has been abandoned.
2017-03-02 15:10:23 +00:00
src = fetchFromGitHub {
owner = "yorickvP";
2017-03-02 15:10:23 +00:00
repo = "nvidiabl";
rev = "2d909f4dfceb24ce98479fd571411c6ec3b71bea";
sha256 = "0dsar8fsaxwywjh6rbrxkhdp142vqjnsyxfz6bgpbqml6slpiqs1";
2014-03-07 15:08:38 +00:00
};
hardeningDisable = [ "pic" ];
nativeBuildInputs = kernel.moduleBuildDependencies;
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)"
"KVER=${kernel.modDirVersion}"
2014-03-07 15:08:38 +00:00
];
meta = with stdenv.lib; {
2014-03-07 15:08:38 +00:00
description = "Linux driver for setting the backlight brightness on laptops using NVIDIA GPU";
homepage = https://github.com/guillaumezin/nvidiabl;
license = licenses.gpl2;
platforms = [ "x86_64-linux" "i686-linux" ];
maintainers = with maintainers; [ yorickvp ];
2014-03-07 15:08:38 +00:00
};
}