summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/acerhk/default.nix
blob: 577d0f51027bfcc7e79768d897302afbf1be1da8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args:
args.stdenv.mkDerivation {
  name = "acerhk_kernel_patch-0.5.35";
  kernel = args.kernel.src;
  inherit (args) debug;
  acerhk = args.fetchurl {
    url = http://mirror.switch.ch/mirror/gentoo/distfiles/acerhk-0.5.35.tar.bz2;
    sha256 = "1kg002qraa8vha2cgza3z74d9j46g180g5b44zbv64dsa9n2j4b0";
  };

  buildInputs =(with args; [gnupatch]);
  
  builder = ./builder.sh;

  meta = { 
      description = "Hotkey driver for some Acer";
      homepage =  http://www.cakey.de/acerhk/;
      license = "GPL-2";
  };
}