Commit Graph

31 Commits

Author SHA1 Message Date
Kira Bruneau
8955058804 linuxPackages.xpadneo: 0.10.2 -> 0.10.4 2026-07-15 22:00:41 -04:00
Kira Bruneau
6851ced685 linuxPackages.xpadneo: 0.10.1 -> 0.10.2 2026-04-22 19:34:10 -04:00
Kira Bruneau
0a140ed66b linuxPackages.xpadneo: skip pre-releases in updateScript 2026-04-22 19:13:39 -04:00
Sandro Jäckel
80282d4d96 linuxPackages.xpadneo: 0.10 -> 0.10.1
Diff: https://github.com/atar-axis/xpadneo/compare/v0.10...v0.10.1

Changelog: https://github.com/atar-axis/xpadneo/releases/tag/v0.10.1
2026-03-31 17:55:44 +02:00
Sandro Jäckel
f704ec835e linuxPackages.xpadneo: 0.9.8 -> 0.10.0
Changelog: https://github.com/atar-axis/xpadneo/releases/tag/v0.10
2026-03-08 18:19:23 +01:00
Mio
a0ddfd7ba5 linuxPackages.xpadneo: remove bluez from build inputs 2026-01-21 22:46:42 +11:00
Kira Bruneau
3a067ba078 linuxPackages.xpadneo: add changelog 2025-12-30 10:39:00 -05:00
Kira Bruneau
51cad289d6 linuxPackages.xpadneo: 0.9.7 -> 0.9.8 2025-12-30 10:39:00 -05:00
Kira Bruneau
ce2c45c7bc linuxPackages_latest.xpadneo: remove top-level with 2025-12-05 08:18:12 -05:00
Kira Bruneau
ff1567f01e linuxPackages_latest.xpadneo: fix build 2025-12-05 00:05:46 -05:00
Maximilian Bosch
5645cd22d4 linux: expose make flags for modules in linuxKernel.packages.linux_X_Y
Closes #376820

The issue with providing `moduleMakeFlags` via `passthru` of the kernel
package is that when this package gets overriden[1], the `moduleMakeFlags`
list still references the kernel without the overrides.

This broke e.g. kernel modules of linux-rpi4 which can be reproduced
with

    nix-build --argstr system aarch64-linux -A linuxKernel.packages.linux_rpi4.zfs_2_3

This used to break with

    Error: modDirVersion 6.6.51 specified in the Nix expression is wrong, it should be: 6.6.51-v8

since KBUILD_OUTPUT referenced the kernel without the changes from
`overrideDerivation` that also changes the `modDirVersion`.

The new approach is to add the build flags right into
`linuxKernel.packages.linux_X_Y`: that way we don't need any hacks to
update `moduleMakeFlags` when the derivation with the passthru gets
overridden.

By using the fixpoint of the package-set, the `kernelModuleMakeFlags`
list is correctly updated. E.g. given

    with import ./. {};

    linuxKernel.packages.linux_6_6.extend (self: super: {
      kernel = super.kernel.overrideAttrs (_: {
        name = "linux-snens";
      });
    })

the `makeFlags` is correctly updated:

    $ nix-instantiate snenskek.nix -A zfs_2_3.makeFlags --eval --strict
    [ "ARCH=x86_64" "CROSS_COMPILE=" "KBUILD_OUTPUT=/nix/store/gsp68549k1aqbwxwczpgw67w5jjn4shw-linux-snens-dev/lib/modules/6.6.74/build" ]

[1] E.g. `linux-rpi4`.
2025-01-27 16:09:50 +01:00
K900
aa3e94fe7c treewide: kernel.makeFlags -> kernel.moduleMakeFlags 2025-01-23 14:00:43 +03:00
Kira Bruneau
e09f075b08 linuxPackages.xpadneo: 0.9.6 -> 0.9.7 2024-12-23 10:17:48 -05:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
piotr152
3ed0997e71 xpadneo: fix build issues for kernel 6.12 2024-11-21 09:57:31 +01:00
Kira Bruneau
c6312707b8 linuxPackages.xpadneo: add updateScript 2024-02-14 15:09:20 -05:00
R. Ryantm
23d741d802 linuxKernel.packages.linux_4_19.xpadneo: 0.9.5 -> 0.9.6 2024-02-13 03:36:20 +00:00
Jan Malakhovski
9d33433ed2 linuxPackages.{xpadneo, xone}: fix after simplifying sourceRoot
This partially reverts commits 68be474e30
and 5a0f953d9f.
2023-08-26 14:34:50 +00:00
Jan Malakhovski
68be474e30 linuxPackages.xpadneo: simplify sourceRoot 2023-08-12 08:29:56 +00:00
Kira Bruneau
2a916b6c29 nixos/xpadneo: add sanity test 2022-09-20 20:07:11 -04:00
Kira Bruneau
216a21c638 linuxPackages.xpadneo: 0.9.4 -> 0.9.5 2022-09-20 18:52:46 -04:00
Kira Bruneau
600b36b117 linuxPackages.xpadneo: fix license 2022-08-02 21:50:05 -04:00
R. Ryantm
dcbe29d119 linuxPackages.xpadneo: 0.9.1 -> 0.9.4 2022-08-02 21:49:54 -04:00
Nick Cao
86ec7c438c xpadneo: prepend kernel.makeFlags to makeFlags 2022-03-07 12:23:47 +08:00
Kira Bruneau
cd4780fab4 maintainers: rename metadark -> kira-bruneau (#124035) 2021-05-22 16:47:40 +02:00
Kira Bruneau
a19d6e6dcd linuxPackages.xpadneo: 0.9 -> 0.9.1 2021-04-05 18:32:47 -04:00
Kira Bruneau
692482d188 linuxPackages.xpadneo: 0.8.4 -> 0.9 2021-04-04 14:27:01 -04:00
Kira Bruneau
ef16b3f77c linuxPackages.xpadneo: 0.8.3 -> 0.8.4 2020-11-02 21:33:16 -05:00
MetaDark
3ac630bbe9 linuxPackages.xpadneo: 0.8.2 -> 0.8.3 2020-09-19 09:52:18 -04:00
MetaDark
d554a0aba7 linuxPackages.xpadneo: 0.8.1 -> 0.8.2
Also fixes kernel module version: @DO_NOT_CHANGE@ -> 0.8.2
2020-08-03 14:26:27 -04:00
MetaDark
db96d8840f nixos/xpadneo: init at 0.8.1
I just got an Xbox One controller and I wasn't satisfied with the xpad
driver that ships with the Linux kernel

xpadneo supports more features and fixes problems with
incorrect button mappings

https://atar-axis.github.io/xpadneo
2020-07-22 21:08:11 -04:00