summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nvidiabl/default.nix
blob: a5a43926e045995d98f3c293fc398a364a90d0b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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";
  };

  preConfigure = ''
    sed -i 's|/sbin/depmod|#/sbin/depmod|' Makefile
  '';

  makeFlags = [
    "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
    "DESTDIR=$(out)"
    "KVER=${kernel.modDirVersion}"
  ];

  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;
  };
}