39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, kernelDev, zlib }:
|
|
|
|
/* Only useful for kernels 3.2 to 3.5.
|
|
Fails to build in 3.8.
|
|
3.9 upstream already includes a proper alps driver for this */
|
|
|
|
let
|
|
ver = "1.3";
|
|
bname = "psmouse-alps-${ver}";
|
|
in
|
|
stdenv.mkDerivation {
|
|
name = "psmouse-alps-${kernelDev.version}-${ver}";
|
|
|
|
src = fetchurl {
|
|
url = http://www.dahetral.com/public-download/alps-psmouse-dlkm-for-3-2-and-3-5/at_download/file;
|
|
name = "${bname}-alt.tar.bz2";
|
|
sha256 = "1ghr8xcyidz31isxbwrbcr9rvxi4ad2idwmb3byar9n2ig116cxp";
|
|
};
|
|
|
|
buildPhase = ''
|
|
cd src/${bname}/src
|
|
make -C ${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build \
|
|
SUBDIRS=`pwd` INSTALL_PATH=$out
|
|
'';
|
|
|
|
installPhase = ''
|
|
make -C ${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build \
|
|
INSTALL_MOD_PATH=$out SUBDIRS=`pwd` modules_install
|
|
'';
|
|
|
|
meta = {
|
|
description = "ALPS dlkm driver with all known touchpads";
|
|
homepage = http://www.dahetral.com/public-download/alps-psmouse-dlkm-for-3-2-and-3-5/view;
|
|
license = "GPLv2";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
};
|
|
}
|