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

37 lines
1.0 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 = "2020-10-01";
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 = "9e21bdcb7efedf29450373a2e9ff2913d1b5e3ab";
sha256 = "1z57gbnayjid2jv782rpfpp13qdchmbr1vr35g995jfnj624nlgy";
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
};
}