From 51cad289d6638993d253e0f2d33e25e4a1715b0c Mon Sep 17 00:00:00 2001 From: Kira Bruneau Date: Tue, 30 Dec 2025 00:02:19 -0500 Subject: [PATCH 1/2] linuxPackages.xpadneo: 0.9.7 -> 0.9.8 --- pkgs/os-specific/linux/xpadneo/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/os-specific/linux/xpadneo/default.nix b/pkgs/os-specific/linux/xpadneo/default.nix index ffd607ec1335..555f49f83072 100644 --- a/pkgs/os-specific/linux/xpadneo/default.nix +++ b/pkgs/os-specific/linux/xpadneo/default.nix @@ -2,7 +2,6 @@ lib, stdenv, fetchFromGitHub, - fetchpatch, kernel, kernelModuleMakeFlags, bluez, @@ -12,24 +11,15 @@ stdenv.mkDerivation (finalAttrs: { pname = "xpadneo"; - version = "0.9.7"; + version = "0.9.8"; src = fetchFromGitHub { owner = "atar-axis"; repo = "xpadneo"; tag = "v${finalAttrs.version}"; - hash = "sha256-evmjQrQPHe8F+6w12bnUv6P4QKGkm63cmP1HEv6equw="; + hash = "sha256-C4hBVr/8KM3uw5RF9PyN2uQvsWnb1thXDF5VMVD2SCQ="; }; - patches = [ - # Remove deprecated ida_simple_xx() usage - (fetchpatch { - url = "https://github.com/orderedstereographic/xpadneo/commit/233e1768fff838b70b9e942c4a5eee60e57c54d4.patch"; - hash = "sha256-HL+SdL9kv3gBOdtsSyh49fwYgMCTyNkrFrT+Ig0ns7E="; - stripLen = 2; - }) - ]; - setSourceRoot = '' export sourceRoot=$(pwd)/${finalAttrs.src.name}/hid-xpadneo/src ''; From 3a067ba0784fca47fa69e6a218a756149d8f4ad3 Mon Sep 17 00:00:00 2001 From: Kira Bruneau Date: Tue, 30 Dec 2025 10:37:18 -0500 Subject: [PATCH 2/2] linuxPackages.xpadneo: add changelog --- pkgs/os-specific/linux/xpadneo/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/os-specific/linux/xpadneo/default.nix b/pkgs/os-specific/linux/xpadneo/default.nix index 555f49f83072..e4cfc0a462de 100644 --- a/pkgs/os-specific/linux/xpadneo/default.nix +++ b/pkgs/os-specific/linux/xpadneo/default.nix @@ -47,6 +47,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Advanced Linux driver for Xbox One wireless controllers"; homepage = "https://atar-axis.github.io/xpadneo"; + changelog = "https://github.com/atar-axis/xpadneo/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ kira-bruneau ]; platforms = lib.platforms.linux;