mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
088a6817db
dnsmasq, uisp, fltk libixp_for_wmii, acerhk kernel module, reiserfsprogs, radeontools, msmtp, procmail, pstree, gxemul changed: umlutilities to also support building tunctl optionally (needing kernel header files) wmii updated and wmiimenu added svn path=/nixpkgs/trunk/; revision=9242
20 lines
519 B
Nix
20 lines
519 B
Nix
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";
|
|
};
|
|
}
|