Commit Graph

21 Commits

Author SHA1 Message Date
poz
6365d72c41 linuxPackages.ddcci-driver: 0.4.5-unstable-{2024-09-26 -> 2025-09-27} 2026-01-11 18:10:46 +01:00
Ihar Hrachyshka
567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01: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
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
Franz Pletz
7d3b07b120 linuxPackages.ddcci-driver: 0.4.4 -> 0.4.5-unstable-2024-09-26
Also fixes builds with Linux 6.11.
2024-11-07 16:20:28 +01:00
Enric Morales
a4d8c76254 linuxPackages.ddcci-driver: fix build with Linux >= 6.8 2024-05-07 23:38:41 +02:00
Dixon Sean Low Yan Feng
e4c3cc5c17 ddcci-driver: 0.4.3 -> 0.4.4 2023-09-22 10:48:44 +08:00
Alexandre Iooss
3b02b2c851 ddcci-driver: fix kernel 6.2 and 6.3 compatibility 2023-05-21 14:02:51 +02:00
Will Fancher
fb66a26b75 ddcci-driver: 0.4.2 -> 0.4.3 2023-05-05 01:37:23 -04:00
Bruno Inec
47e314e92e ddcci-driver: patch to support linux 6.1 2023-01-02 17:24:09 +01:00
Bruno Inec
8e27806b06 ddcci-driver: 4.1 -> 4.2 2021-12-08 10:39:32 +01:00
Bernardo Meurer
1384c851de linuxPackages_5_15.ddcci-driver: fix build
We apply the patch from this MR: https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/merge_requests/8
2021-11-17 22:33:39 -08:00
Alyssa Ross
b21b1b7c64 linuxPackages.ddcci: mark broken on Linux 5.15
https://gitlab.com/ddcci-driver-linux/ddcci-driver-linux/-/issues/25
2021-11-06 11:43:56 -07:00
Brice Waegeneire
a49177e0ce maintainers: remove bricewge
So long, and thanks for all the fish!
2021-09-08 11:56:00 +02:00
Alyssa Ross
742750ccfd linuxPackages.ddcci-driver: 0.3.3 -> 0.4.1 2021-09-03 13:20:34 +00:00
Bernardo Meurer
8afec3d92f linuxPackages.ddcci-driver: use kernel's make flags 2021-08-30 17:12:05 -07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Bernardo Meurer
79045d9051 linuxPackages.ddcci-driver: 0.3.2 -> 0.3.3 2020-04-07 00:34:54 -07:00
Maximilian Bosch
2971c829e5 linuxPackages_5_4.ddci-driver: fix build
https://hydra.nixos.org/build/109690986
2020-01-06 18:47:37 +01:00
Brice Waegeneire
4c468c5b0e ddcci-driver: init at 0.3.2 2019-05-13 10:43:43 +02:00