linuxPackages.xpadneo: 0.8.1 -> 0.8.2

Also fixes kernel module version: @DO_NOT_CHANGE@ -> 0.8.2
This commit is contained in:
MetaDark 2020-07-25 15:44:14 -04:00
parent 2ae62ef72f
commit d554a0aba7

View file

@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "xpadneo";
version = "0.8.1";
version = "0.8.2";
src = fetchFromGitHub {
owner = "atar-axis";
@ -15,6 +15,12 @@ stdenv.mkDerivation rec {
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 ];