diff --git a/pkgs/os-specific/linux/xpadneo/default.nix b/pkgs/os-specific/linux/xpadneo/default.nix index 9845e1e5ebdf..7a1c2d1cec96 100644 --- a/pkgs/os-specific/linux/xpadneo/default.nix +++ b/pkgs/os-specific/linux/xpadneo/default.nix @@ -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 ];