d554a0aba7
Also fixes kernel module version: @DO_NOT_CHANGE@ -> 0.8.2
44 lines
1.0 KiB
Nix
44 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, kernel, bluez }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xpadneo";
|
|
version = "0.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "atar-axis";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0v688j7jx2b68zlwnrr5y63zxzhldygw1lcp8f3irayhcp8ikzzy";
|
|
};
|
|
|
|
setSourceRoot = ''
|
|
export sourceRoot=$(pwd)/source/hid-xpadneo/src
|
|
'';
|
|
|
|
postPatch = ''
|
|
# Set kernel module version
|
|
substituteInPlace hid-xpadneo.c \
|
|
--subst-var-by DO_NOT_CHANGE ${version}
|
|
'';
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
buildInputs = [ bluez ];
|
|
|
|
makeFlags = [
|
|
"-C"
|
|
"${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
"M=$(sourceRoot)"
|
|
];
|
|
|
|
buildFlags = [ "modules" ];
|
|
installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ];
|
|
installTargets = [ "modules_install" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Advanced Linux driver for Xbox One wireless controllers";
|
|
homepage = "https://atar-axis.github.io/xpadneo";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|