linuxPackages.xpadneo: 0.9.4 -> 0.9.5

Changed files
+8 -8
nixos
modules
hardware
pkgs
os-specific
linux
xpadneo
+1 -1
nixos/modules/hardware/xpadneo.nix
···
extraModprobeConfig =
mkIf
(config.hardware.bluetooth.enable &&
-
(lib.versionOlder config.boot.kernelPackages.kernel.version "5.12"))
+
(lib.versionOlder config.boot.kernelPackages.kernel.version "5.12"))
"options bluetooth disable_ertm=1";
extraModulePackages = with config.boot.kernelPackages; [ xpadneo ];
+7 -7
pkgs/os-specific/linux/xpadneo/default.nix
···
{ lib, stdenv, fetchFromGitHub, kernel, bluez }:
-
stdenv.mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "xpadneo";
-
version = "0.9.4";
+
version = "0.9.5";
src = fetchFromGitHub {
owner = "atar-axis";
-
repo = pname;
-
rev = "refs/tags/v${version}";
-
sha256 = "sha256-4zd+x9uYl0lJgePM9LEgLYFqvcw6VPF/CbR1XiYSwGE=";
+
repo = "xpadneo";
+
rev = "refs/tags/v${finalAttrs.version}";
+
sha256 = "sha256-rT2Mq40fE055FemDG7PBjt+cxgIHJG9tTjtw2nW6B98=";
};
setSourceRoot = ''
···
"-C"
"${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"M=$(sourceRoot)"
-
"VERSION=${version}"
+
"VERSION=${finalAttrs.version}"
];
buildFlags = [ "modules" ];
···
maintainers = with maintainers; [ kira-bruneau ];
platforms = platforms.linux;
};
-
}
+
})