Commit Graph

21403 Commits

Author SHA1 Message Date
github-actions[bot]
76839f69b4
Merge staging-next into staging 2023-01-16 06:01:40 +00:00
Bernardo Meurer
66b976eeb5
Merge pull request #209742 from JamieMagee/raspberrypi
treewide: update raspberrypi packages
2023-01-16 00:03:32 -05:00
Nick Cao
568d6fca33
systemd: fix tpm2 driver init 2023-01-16 08:26:59 +08:00
github-actions[bot]
5682b90ffa
Merge staging-next into staging 2023-01-16 00:02:48 +00:00
Artturin
fe1c7a1945 treewide: remove usages of header and stopNest
they're obsolete
2023-01-16 00:08:12 +02:00
Maximilian Bosch
8528a0b512
Merge pull request #210897 from K900/kernels-20230115
Kernels for 2023-01-15
2023-01-15 20:58:06 +01:00
github-actions[bot]
c29db3b9fb
Merge staging-next into staging 2023-01-15 18:01:56 +00:00
Alyssa Ross
079e593d72
evdev-proto: init at 6.0
FreeBSD implements Linux's evdev API, but doesn't come with headers
for it.  Instead, the Linux headers are just modified to be suitable
for FreeBSD, via a port called evdev-proto.  I don't want to copy the
complicated sed expressions from the port into Nixpkgs, so instead we
just build and install the port inside a Nix derivation.
2023-01-15 17:50:05 +00:00
Patryk Wychowaniec
2c55eba8f4
nixos: add --specialisation to nixos-rebuild
This commit fixes a papercut in nixos-rebuild where people wanting to
switch to a specialisation (or test one) were forced to manually figure
out the specialisation's path and run its activation script - since now,
there's a dedicated option to do just that.

This is a backwards-compatible change which doesn't affect the existing
behavior, which - to be fair - might still be considered sus by some
people, the painful scenario here being:

- you boot into specialisation `foo`,
- you run `nixos-rebuild switch`,
- whoops, you're no longer at specialisation `foo`, but you're rather
  brought back to the base system.

(it's especially painful for cases where specialisation is used to load
extra drivers, e.g. Nvidia, since then launching `nixos-rebuild switch`,
while forgetting that you're inside a specialisation, can cause some
parts of your system to get accidentally unloaded.)

I've tried to mitigate that by improving specialisations so that they
create a dedicated file somewhere in `/run/current-system` containing
the specialisation's name (which `nixos-rebuild` could then use as the
default value for `--specialisation`), but I haven't been able to come
up with anything working (plus it would be a breaking change then).

Closes https://github.com/NixOS/nixpkgs/issues/174065
2023-01-15 18:16:49 +01:00
K900
33b60cca17 linux/hardened/patches/6.1: init at 6.1.6-hardened1 2023-01-15 15:23:24 +03:00
K900
6f0d5ff07c linux/hardened/patches/6.0: 6.0.16-hardened1 -> 6.0.19-hardened1 2023-01-15 15:20:56 +03:00
K900
d4fe0d1032 linux/hardened/patches/5.15: 5.15.86-hardened1 -> 5.15.88-hardened1 2023-01-15 15:20:47 +03:00
K900
4d4b65d932 linux/hardened/patches/5.10: 5.10.161-hardened1 -> 5.10.163-hardened1 2023-01-15 15:20:37 +03:00
K900
fd77307ab0 linux: 6.1.3 -> 6.1.6 2023-01-15 15:19:50 +03:00
K900
5677f89218 linux: 6.0.17 -> 6.0.19 2023-01-15 15:19:25 +03:00
K900
a05b3a75b9 linux: 5.15.86 -> 5.15.88 2023-01-15 15:19:18 +03:00
K900
a4b823d73c linux: 5.10.162 -> 5.10.163 2023-01-15 15:19:11 +03:00
PedroHLC ☭
96bfec1958
linuxKernel.kernels.linux_lqx: 6.1.3-lqx1 -> 6.1.6-lqx1 2023-01-14 21:36:18 -03:00
PedroHLC ☭
01158eab1d
linuxKernel.kernels.linux_zen: 6.1.3-zen1 -> 6.1.6-zen1 2023-01-14 21:28:37 -03:00
github-actions[bot]
142d3af1cb
Merge staging-next into staging 2023-01-15 00:03:07 +00:00
Ryan Lahfa
afc4f79e05
Merge pull request #207424 from toastal/zfs-2.1.8-unstable-2022-12-14
zfsUnstable: 2.1.8-staging-2022-12-01 → 2.1.8-staging-2022-01-03
2023-01-14 23:12:20 +01:00
Alyssa Ross
eaf77e7b0b
freebsd.sed: init at 13.1.0 2023-01-14 19:33:40 +00:00
github-actions[bot]
5ad514cb7e
Merge staging-next into staging 2023-01-14 18:01:41 +00:00
Artturi
1353a4a456
Merge pull request #208775 from sweenu/patch_ddcci_driver 2023-01-14 19:03:48 +02:00
toastal
9e88448026 zfsUnstable: 2.1.8-staging-2022-12-01 → 2.1.8-staging-2023-01-10 2023-01-14 21:50:31 +07:00
Sergei Trofimovich
ca4da963f8 Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
    pkgs/development/libraries/audio/roc-toolkit/default.nix
2023-01-14 11:07:42 +00:00
github-actions[bot]
4712ed9439
Merge master into staging-next 2023-01-14 00:02:26 +00:00
Adam Joseph
6f6b4a1d41 systemd: default withLibBPF to false if isMips64
libBPF does not compile for mips64 targets using clang (rathern than
gcc) because clang lacks the necessary _MIPS_SZPTR compiler builtin.
Let's allow the rest of systemd to compile.

- The glibc people noticed this problem [way back in
  2011](https://sourceware.org/pipermail/libc-ports/2011-June/001959.html)
  and consider it to be a clang/llvm bug.  I am inclined to agree.

- [clang has the `_MIPS_SZPTR`
  builtin](3af9cb5375/clang/lib/Basic/Targets/Mips.cpp (L185))
  and seems to have had it since before they switched to git.

This may in fact be a nixpkgs bug -- that we're not invoking clang
in a way that tells the frontend to make the mips builtins
available, even if the backend is emitting mips binaries.  Or at
least we aren't tricking systemd's build machinery into doing that.
2023-01-13 20:09:41 +00:00
Artturi
567e81c363
Merge pull request #210102 from Artturin/fakeunameinit 2023-01-13 20:20:26 +02:00
github-actions[bot]
49722fd14a
Merge master into staging-next 2023-01-13 18:01:34 +00:00
Vladimír Čunát
befc83905c
Merge #209423: gnat12: add for x86_64-darwin 2023-01-13 18:32:21 +01:00
Anthony Roussel
4d32358bea
iputils: format with nixpkgs-fmt 2023-01-13 17:25:52 +01:00
Anthony Roussel
d4c1e368e1
iputils: 20211215 -> 20221126 2023-01-13 17:25:49 +01:00
John Ericson
b7ceddd0a1
Merge pull request #210485 from alyssais/libpciaccess-netbsd
xorg.libpciaccess: fix build on NetBSD
2023-01-13 10:09:58 -05:00
markuskowa
77a4ea849f
Merge pull request #210340 from r-ryantm/auto-update/rdma-core
rdma-core: 43.0 -> 44.0
2023-01-13 13:32:53 +01:00
github-actions[bot]
96d361c622
Merge staging-next into staging 2023-01-13 12:02:02 +00:00
github-actions[bot]
85724d692e
Merge master into staging-next 2023-01-13 12:01:30 +00:00
R. Ryantm
c8978ddee4 brillo: 1.4.11 -> 1.4.12 2023-01-13 17:53:16 +08:00
Vladimír Čunát
d6ad68a561
Merge #210062: Qt5 spring cleaning (darwin-focused)
...into staging-next
2023-01-13 10:17:59 +01:00
Fabian Möller
cc4de1aa3a
nixos-rebuild: Allow local builds when --target-host is used again
This is a followup of #148921, to allow local builds when
`--target-host` is used again. It also documents the change in
behavior, regarding the specialty of the `localhost` value.

By removing the special handling of an empty `buildHost` and non empty
`targetHost`, this change also slightly alters the behavior of
`nixos-rebuild`.

Originally by specifying `--target-host target --build-host ""`, the
now removed special case would transform those arguments to
`--target-host target --build-host target`.
Now the empty `--build-host` would result in a local build.
2023-01-13 10:16:46 +01:00
Nick Cao
201b5a38c3
Merge pull request #206857 from Kiskae/patch-3
linuxPackages.nvidia_x11_vulkan_beta: 515.49.25 -> 525.47.04
2023-01-13 14:09:32 +08:00
github-actions[bot]
baf8502f7e
Merge staging-next into staging 2023-01-13 06:01:43 +00:00
Alyssa Ross
0a77e09a83
netbsd.libpci: init at 9.2 2023-01-13 04:49:19 +00:00
Alyssa Ross
ce373ba234
netbsd.libarch: init at 9.2 2023-01-13 04:49:17 +00:00
Alyssa Ross
820f3452f4 pkgsMusl.systemd: fix build by updating patchset 2023-01-13 04:20:32 +00:00
Alyssa Ross
0debb0b193 shadow: only use tcb where available
Fixes pkgsMusl.shadow.

Fixes: 0e32191623 ("shadow: add tcb support")
2023-01-13 04:19:29 +00:00
Artturin
96ebc83053 deterministic-uname: init
for reproducibility

deterministic-uname: dont hardcode OPERATING_SYSTEM_VAL to GNU/Linux
2023-01-12 18:29:14 +02:00
R. Ryantm
c7990a5139 rdma-core: 43.0 -> 44.0 2023-01-12 10:18:51 +00:00
Francesco Gazzetta
c956f85fbd
Merge pull request #204653 from ymatsiuk/ymatsiuk/bluetooth
nixos/bluetooth: add input and network service configs
2023-01-12 08:24:01 +00:00
K900
2b06f2a986 darwin/apple-sdk-11.0: expose xcodebuild directly 2023-01-12 10:36:42 +03:00
Uri Baghin
ea9c9ba75c
Merge pull request #207123 from divanorama/darwin_security_xpc
darwin.apple_sdk_11_0: add Security dependency on xpc
2023-01-12 08:37:53 +11:00
github-actions[bot]
0ea7838538
Merge staging-next into staging 2023-01-11 18:02:03 +00:00
github-actions[bot]
892fc2184d
Merge master into staging-next 2023-01-11 18:01:26 +00:00
sternenseemann
6c8644fc37 ath9k-htc-blobless-firmware: fix evaluation with Nix 2.3
Path interpolation is not available in all Nix versions nixpkgs supports
2023-01-11 16:28:28 +01:00
github-actions[bot]
db669efe0d
Merge staging-next into staging 2023-01-11 06:02:05 +00:00
Martin Weinelt
c1e6c6af69 Merge remote-tracking branch 'origin/master' into staging-next 2023-01-11 03:51:33 +01:00
zowoq
ae50f0678a
Revert "bazel_6: 6.0.0-pre.20220720.3 -> 6.0.0" 2023-01-11 10:01:46 +10:00
Uri Baghin
4001c325ac
Merge pull request #206934 from alloveras/patch-2
bazel_6: 6.0.0-pre.20220720.3 -> 6.0.0
2023-01-11 10:25:22 +11:00
luxus
b31bb0e1d1 sketchybar: 2.8.2 -> 2.13.2 2023-01-10 23:42:53 +08:00
luxus
c40708f924 darwin.apple_sdk.frameworks.DisplayServices: init
Used by sketchybar
2023-01-10 23:14:00 +08:00
Aamaruvi Yogamani
86c3569581
rtl88xxau-aircrack: 37e27f -> ee2997
Now builds on Linux 6.1.
2023-01-10 08:29:58 -05:00
Artturi
bdd04ab2f9
Merge pull request #195236 from Et7f3/musl-split-binary 2023-01-10 05:43:55 +02:00
Artturi
c07552f6f7
Merge pull request #208685 from amjoseph-nixpkgs/ath9k-htc-blobless
ath9k-htc-blobless-firmware: init at 1.4.0
2023-01-10 03:51:19 +02:00
Anderson Torres
68c415675c
Merge pull request #209968 from r-ryantm/auto-update/uclibc-ng
uclibc-ng: 1.0.41 -> 1.0.42
2023-01-09 22:33:37 -03:00
Adam Joseph
7af47c9877 ath9k-htc-blobless-firmware: init at 1.4.0
This firmware is completely open source with no blobs, which is
quite rare in the wifi world.  Wifi chips have their own dedicated
general-purpose CPUs.  This source code allows you to see what those
CPUs are doing and modify their behavior.

When the upstream repository was created in 2013, "open source
firmware" meant "firmware which is open source".  In 2023 that is no
longer the generally accepted [definition], so I have chosen an
unambiguous adjective (whose meaning has remained stable for
decades) to use in the pname.

[definition]: https://web.archive.org/web/20221209121315/https://www.opencompute.org/projects/open-system-firmware#:~:text=Another,allows%20it

Co-authored-by: Artturi <Artturin@artturin.com>
2023-01-09 16:10:04 -08:00
R. Ryantm
791af94225 libratbag: 0.16 -> 0.17 2023-01-09 23:46:18 +00:00
R. Ryantm
3c866e643c uclibc-ng: 1.0.41 -> 1.0.42 2023-01-09 23:28:30 +00:00
Artturi
27c1ec2ecf
Merge pull request #209816 from Artturin/deprecate-top-level-platform-aliases 2023-01-09 22:15:50 +02:00
Artturin
2eeb34c273 treewide: {build,host,target}Platform -> stdenv.{build,host,target}Platform 2023-01-09 21:13:22 +02:00
github-actions[bot]
05972e9778
Merge staging-next into staging 2023-01-09 18:01:58 +00:00
github-actions[bot]
33aa224777
Merge master into staging-next 2023-01-09 18:01:24 +00:00
Sandro
880d36a180
Merge pull request #205226 from wegank/darwin-sdk-sh 2023-01-09 15:47:44 +01:00
Sandro
41fe886f68
Merge pull request #209496 from hmenke/sof 2023-01-09 15:43:23 +01:00
Weijia Wang
9957ee5fd6 darwin: add usage to generate-sdk-packages.sh 2023-01-09 13:08:37 +01:00
Weijia Wang
2bd3048ea4 darwin: fix generate-sdk-packages.sh 2023-01-09 13:08:09 +01:00
github-actions[bot]
ba0dad1c94
Merge staging-next into staging 2023-01-09 00:02:51 +00:00
github-actions[bot]
fce67420c4
Merge master into staging-next 2023-01-09 00:02:14 +00:00
Sergei Trofimovich
f5e04db86f
Merge pull request #209431 from r-ryantm/auto-update/pax-utils
pax-utils: 1.3.5 -> 1.3.6
2023-01-08 20:57:06 +00:00
Jamie Magee
2a404e1d3c
raspberrypiWirelessFirmware: 2021-12-06 -> 2022-07-06 2023-01-08 11:29:39 -08:00
Jamie Magee
0060dbd720
raspberrypi-armstubs: 2021-11-01 -> unstable-2022-07-11 2023-01-08 11:14:58 -08:00
Jamie Magee
42b10e9e5c
raspberrypifw: 1.20221028 -> 1.20230106 2023-01-08 11:07:47 -08:00
Jamie Magee
6c46f55495
linux_rpi{0,1,2,3,4}: 5.15.74 -> 5.15.84 2023-01-08 11:07:13 -08:00
github-actions[bot]
e551f4f380
Merge staging-next into staging 2023-01-08 18:01:40 +00:00
Martin Weinelt
4d65509504 Merge remote-tracking branch 'origin/master' into staging-next 2023-01-08 16:34:30 +01:00
Thiago Kenji Okada
0aefadec65
Merge pull request #207296 from wegank/chuck-darwin
chuck: 1.4.1.0 -> 1.4.1.1, unbreak on aarch64-darwin
2023-01-08 14:54:04 +00:00
github-actions[bot]
410c7fca50
Merge staging-next into staging 2023-01-08 00:03:17 +00:00
github-actions[bot]
4bf238a8fb
Merge master into staging-next 2023-01-08 00:02:31 +00:00
Fabian Affolter
055830fad8
Merge pull request #209457 from r-ryantm/auto-update/bpfmon
bpfmon: 2.50 -> 2.51
2023-01-08 00:19:05 +01:00
Fabian Affolter
eabbe8b96f
bpfmon: add changelog to meta 2023-01-07 23:28:51 +01:00
Felix Bühler
1302f3bd27
apple-source-release: deprecate phases (#161535) 2023-01-07 17:20:01 -05:00
7c6f434c
5db02d4fa6
Merge pull request #207428 from helsinki-systems/upd/lvm2
lvm2: 2.03.17 -> 2.03.18
2023-01-07 21:22:26 +00:00
Kiskae
d4b1e793bf linuxPackages.nvidia_x11_vulkan_beta: 515.49.25 -> 525.47.04 2023-01-07 19:12:22 +01:00
github-actions[bot]
32a4ccb1d5
Merge staging-next into staging 2023-01-07 18:01:47 +00:00
github-actions[bot]
3b3114f45d
Merge master into staging-next 2023-01-07 18:01:08 +00:00
Dmitry Bogatov
249a3ba53b pkgsStatic.wpa_supplicant: fix build
Static build has less features enabled, since full set pulls dependency
on system which does not support static build by design.
2023-01-07 17:16:41 +01:00
Artturi
f56de234bb
Merge pull request #207652 from Artturin/splicenixfmt 2023-01-07 17:42:25 +02:00
Henri Menke
66c979db9a
sof-firmware: 2.2.3 -> 2.2.4 2023-01-07 16:11:27 +01:00
github-actions[bot]
76d33189ba
Merge master into staging-next 2023-01-07 12:01:24 +00:00
R. Ryantm
4372f03a9d bpfmon: 2.50 -> 2.51 2023-01-07 11:20:00 +00:00
Thiago Kenji Okada
1982ffbdd1
Merge pull request #209262 from NickCao/nvidia
linuxPackages.nvidia_x11_production: 525.60.11 -> 525.78.01
2023-01-07 10:41:23 +00:00
R. Ryantm
f32079f1db pax-utils: 1.3.5 -> 1.3.6 2023-01-07 08:20:51 +00:00
Boey Maun Suang
82b88d2db6 bintoolsDualAs: Add package
For reasons explained in the commit contents, in order to build the
native gnat package for x86_64-darwin, the native gnatboot package for
x86_64-darwin must have access to both the Clang integrated assembler
and the cctools GNU assembler for that platform.  This commit creates a
package with both of those assemblers that x86_64-darwin gnatboot can
then be wrapped with.
2023-01-07 18:32:12 +11:00
github-actions[bot]
0789ea69b1
Merge master into staging-next 2023-01-07 00:02:25 +00:00
Graham Christensen
8552d36ed3
Merge pull request #204673 from whiteley/5.15-rt
Add linux-rt-5.15
2023-01-06 19:56:41 +00:00
Matt Whiteley
be5854b57b
linux-rt-5.15: 5.15.79-rt54 -> 5.15.86-rt56 2023-01-06 10:46:56 -08:00
Martin Weinelt
5b308cd1df Merge remote-tracking branch 'origin/master' into staging-next 2023-01-06 19:10:05 +01:00
Artturi
17e4794068
Merge pull request #208247 from fortuneteller2k/xanmod 2023-01-06 19:13:11 +02:00
Adam Joseph
88e32095e1 linux/kernel: backport symbol GPLification fix from 5.19
Linux has a few PowerPC-specific symbols which are marked as GPL exports; these
symbols wound up being exposed in Linux 5.12 and are needed by OpenZFS.  The
symbol licensing was fixed in mainline 5.19; this commit backports the fix to
all previous affected kernels.

This commit is required in order to build the NixOS ISO for PowerPC64.
2023-01-06 15:59:38 +01:00
github-actions[bot]
60c812cecd
Merge master into staging-next 2023-01-06 12:01:11 +00:00
fortuneteller2k
2a31c36f3e linux_xanmod: 5.15.81 -> 5.15.84 2023-01-06 18:59:38 +08:00
fortuneteller2k
924976e001 linux_xanmod_latest: 6.1.0 -> 6.1.3 2023-01-06 18:59:38 +08:00
Thiago Kenji Okada
2c285e4b2f
Merge pull request #209238 from PedroHLC/zen-kernels-6.1.3
zen-kernels: 6.1.2 -> 6.1.3
2023-01-06 10:41:11 +00:00
github-actions[bot]
ea5e5050f1
Merge master into staging-next 2023-01-06 06:01:11 +00:00
Anthony Roussel
1b28b9c555
powertop: format with nixpkgs-fmt 2023-01-06 04:53:58 +01:00
Anthony Roussel
700dda2156
powertop: 2.14 -> 2.15 2023-01-06 04:53:55 +01:00
Anthony Roussel
7816224051
powertop: add anthonyroussel to maintainers 2023-01-06 04:52:03 +01:00
Nick Cao
b7a1f8484c
linuxPackages.nvidia_x11_production: 525.60.11 -> 525.78.01 2023-01-06 11:06:12 +08:00
Nick Cao
e29dd5e157
nvidia-x11: remove unused binding to kernelModVersion 2023-01-06 10:26:41 +08:00
P. R. d. O
b33102ec56
android-udev-rules: 20220611 -> 20230104 2023-01-05 18:05:28 -06:00
PedroHLC ☭
9c21b5bcd8
linuxKernel.kernels.linux_zen: 6.1.2-zen1 -> 6.1.3-zen1 2023-01-05 19:31:51 -03:00
PedroHLC ☭
4d0d25a37e
linuxKernel.kernels.linux_lqx: 6.1.2-lqx1 -> 6.1.3-lqx1 2023-01-05 18:50:03 -03:00
Martin Weinelt
afd962b51c Merge remote-tracking branch 'origin/master' into staging-next 2023-01-05 17:16:26 +01:00
Bernardo Meurer
3ebdfd53b6
Merge pull request #209050 from lovesegfault/kernel-updates 2023-01-05 12:04:10 -03:00
github-actions[bot]
0c98bf3e85
Merge staging-next into staging 2023-01-05 00:02:56 +00:00
clerie
ccb3146bf2
iproute2: 6.0.0 -> 6.1.0 (#206932)
"Nothing major; lots of usual set of small fixes."

Changes: https://marc.info/?l=linux-netdev&m=167103481006660
2023-01-04 21:50:22 +01:00
Vladimír Čunát
0fee82023b
Merge #207597: libbpf: 1.0.1 -> 1.1.0
...into staging
2023-01-04 20:28:57 +01:00
Bernardo Meurer
2af7e9a30b
linux_testing: 6.1-rc8 -> 6.2-rc2 2023-01-04 12:43:29 -03:00
Bernardo Meurer
05912cd5a4
linux/hardened/patches/6.0: 6.0.15-hardened1 -> 6.0.16-hardened1 2023-01-04 12:36:42 -03:00
Bernardo Meurer
fab20a5d50
linux/hardened/patches/5.15: 5.15.85-hardened1 -> 5.15.86-hardened1 2023-01-04 12:36:25 -03:00
Bernardo Meurer
a54325524c
linux: 6.1.2 -> 6.1.3 2023-01-04 12:35:40 -03:00
Bernardo Meurer
4f65c169c1
linux: 6.0.16 -> 6.0.17 2023-01-04 12:35:26 -03:00
Bernardo Meurer
0679b21257
linux: 5.10.161 -> 5.10.162 2023-01-04 12:35:08 -03:00
John Ericson
b92fb601c2
Merge pull request #208947 from sternenseemann/ghc-head-js-backend-try-1
haskell.compiler.ghcHEAD: support JS backend
2023-01-04 09:12:10 -05:00
github-actions[bot]
e859576396
Merge staging-next into staging 2023-01-04 00:03:20 +00:00
Artturi
099f6ed77c
Merge pull request #203504 from IvarWithoutBones/bump-yabai 2023-01-03 23:52:03 +02:00
sternenseemann
1ee0f4c2aa systemd: fix evaluation in pkgsCross.ghcjs.buildPackages
GHC's js backend depends on systemd via emscripten via closure compiler
via jdk via cups. Before it fails to evaluate, though, since
llvmPackages looks into `targetPackages.stdenv.cc` to determine which
C++ library to use (something that should be rectified in the future).
[Unfortunately], for `pkgsCross.ghcjs`, `stdenv.cc` throws which blows
up evaluating `pkgsCross.buildPackages.llvmPackages.clang`.

This is in principle unnecessary. We want to build
`pkgsCross.ghcjs.buildPackages.haskell.compiler.native-bignum.ghcHEAD`
which depends on `pkgsCross.ghcjs.buildPackages.systemd` which needs
clang and friends only in `nativeBuildInputs`, so
`pkgsCross.ghcjs.buildPackages.buildPackages.llvmPackages.clang`.
Unfortunately, due to the nature of splicing, we first evaluate the
“adjacent” derivation before we can access the spliced derivation we are
actually interested in. If the former
fails (`pkgsCross.ghcjs.buildPackages.llvmPackages.clang`), we can't do
the latter.

The solution is to just not rely on splicing in this case and take
`buildPackages.llvmPackages.clang` directly (relative to
`buildPackages.systemd` in this case!) which avoids the whole problem.

[Unfortunately]: c739c420db (diff-3209527bd27cbc775f579b1e295b0264c850859c7245d526965cec456b8c70a4R61)
2023-01-03 22:19:59 +01:00
github-actions[bot]
e076f677a1
Merge staging-next into staging 2023-01-03 18:01:45 +00:00
Weijia Wang
ac3c81faa1 darwin.apple_sdk: expose MultitouchSupport 2023-01-03 18:23:33 +01:00
Sandro Jäckel
99b715f39d
waydroid: cleanup inputs 2023-01-03 17:44:47 +01:00
Charles Johnson
2628f0003c
waydroid: 1.3.3 -> 1.3.4 (#206833)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-01-03 17:43:06 +01:00
github-actions[bot]
e2839320bb
Merge staging-next into staging 2023-01-03 12:01:44 +00:00
Dmitry Kalinkin
d4bad6a35a
Merge pull request #147577 from veprbl/pr/lldb_89_darwin_fix
llvmPackages_{8,9}.lldb: fix darwin build
2023-01-03 05:29:24 -05:00
Adam Joseph
5ace5a33b9 eudev: remove glib from buildInputs
eudev does not depend on glib.  I grepped the source code for glib
and found no references to it.
2023-01-02 23:38:43 -08:00
Weijia Wang
198d522594 darwin.apple_sdk.frameworks.DebugSymbols: init 2023-01-02 23:05:36 -05:00
Anderson Torres
32c8f85ba6
Merge pull request #208253 from realsnick/fix/fxload
fxload: updated to newer version from libusb1’s examples
2023-01-02 23:13:48 -03:00
SnIcK
e13ee020d2 fxload: updated to newer version from libusb1 2023-01-02 17:30:04 -06:00
Thomas Gerbet
ad9521e07e multipath-tools: 0.9.3 -> 0.9.4
https://github.com/opensvc/multipath-tools/compare/0.9.3...0.9.4

Fixed a bunch of issues and warnings occuring during the build.
`passthru.tests` is however still broken.
2023-01-02 21:34:35 +01:00
github-actions[bot]
d8b859a780
Merge staging-next into staging 2023-01-02 18:01:43 +00:00
Bruno Inec
47e314e92e
ddcci-driver: patch to support linux 6.1 2023-01-02 17:24:09 +01:00
Maximilian Bosch
e0eca4cefc
Merge pull request #208735 from Ma27/linux-kernel-updates
Linux kernel updates 2023-01-02
2023-01-02 15:36:31 +01:00
PedroHLC ☭
95667fbfa9
linuxKernel.kernels.linux_lqx: 6.0.13-lqx3 -> 6.1.2-lqx1 2023-01-02 10:08:55 -03:00
PedroHLC ☭
b9e3eb4aae
linuxKernel.kernels.linux_zen: 6.1-zen1 -> 6.1.2-zen1 2023-01-02 10:08:55 -03:00
Maximilian Bosch
7cecdb94d1
linux_latest-libre: 19007 -> 19027 2023-01-02 11:23:15 +01:00
Maximilian Bosch
4b249451ec
linux: 6.1.1 -> 6.1.2 2023-01-02 11:22:51 +01:00
Maximilian Bosch
5851c3d993
linux: 6.0.15 -> 6.0.16 2023-01-02 11:22:39 +01:00
Maximilian Bosch
ea9482360d
linux: 5.15.85 -> 5.15.86 2023-01-02 11:22:27 +01:00
Jan Tojnar
5810109b42 Merge branch 'staging-next' into staging
- readline6 attribute removed from all-packages.nix in d879125d61
- readline attribute was bumped to readline82 in 50adabdd60
2023-01-02 03:04:32 +01:00
maxine
c791e28190
Merge pull request #208054 from r-ryantm/auto-update/ell
ell: 0.54 -> 0.55, iwd: 2.0 -> 2.1
2023-01-02 00:15:04 +01:00
Jörg Thalheim
dda48a5044 linux_testing_bcachefs: 2022-10-31 -> 2022-12-29 2023-01-01 19:58:17 +01:00
Dmitry Bogatov
26969c3a81 pkgsStatic.lm_sensors: fix build 2023-01-01 10:28:42 -05:00
Naïm Favier
2c83122c18
treewide: fix broken meta attributes 2023-01-01 14:10:42 +01:00
Victor Engmark
cbd1dc1e72 nixos-rebuild: Treat any build/target host as non-local
Closes #148918.
2023-01-01 00:28:02 -05:00
Maxine Aubrey
0201a05469
iwd: 2.0 -> 2.1 2022-12-29 00:16:01 +01:00
Et7f3
b3304bb53f musl: add bin output. 2022-12-28 20:29:18 +02:00
Sergei Trofimovich
092d57c076 Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
    pkgs/development/tools/language-servers/ansible-language-server/default.nix
2022-12-28 09:35:37 +00:00
R. Ryantm
b21655f661 ell: 0.54 -> 0.55 2022-12-28 04:15:03 +00:00
Philippe Hürlimann
bcbedfeefc nixos/ulogd: init
Heavily based on original work by xvuko

Co-authored-by: xvuko <nix@vuko.pl>
2022-12-28 00:17:28 +01:00
Philippe Hürlimann
77763b4c88 ulogd: init at 2.0.8
Heavily based on original work by xvuko.

Co-authored-by: xvuko <nix@vuko.pl>
2022-12-28 00:17:27 +01:00
Naïm Favier
3fc528ff7f
Merge pull request #207095 from ncfavier/linux-custom-kernel 2022-12-27 17:10:43 +01:00
Bernardo Meurer
ed05a4b5c7
Merge pull request #205269 from xaverdh/mglru
enable Multi-Gen LRU in the linux kernel config
2022-12-27 11:40:03 -03:00
figsoda
86a14dbfe8
Merge pull request #207731 from figsoda/mdevctl
mdevctl: remove patch, install more files
2022-12-26 20:08:08 -05:00
Samuel Dionne-Riel
7a073668c1
Merge pull request #207369 from samueldr/fix/rtl8821au-arm
rtl8821au: 2022-08-22 -> 2022-12-22 + Fix build for ARM
2022-12-26 18:10:02 -05:00
figsoda
6e5cb911f3 mdevctl: remove patch, install more files 2022-12-25 15:31:25 -05:00
Artturin
58fa78077c treewide: use splicing convenience functions 2022-12-25 14:05:03 +02:00
github-actions[bot]
b48679133a
Merge staging-next into staging 2022-12-25 12:01:40 +00:00
R. Ryantm
b7fee99eb8 fnotifystat: 0.02.08 -> 0.02.09 2022-12-25 12:02:21 +01:00
Jan Tojnar
72c37eddec Merge branch 'staging-next' into staging 2022-12-25 01:30:47 +01:00
R. Ryantm
a16c64bf42 libbpf: 1.0.1 -> 1.1.0 2022-12-24 17:53:04 +00:00
Sandro
c8c8ac5cc6
Merge pull request #203449 from yaxitech/azure-quote-provider 2022-12-24 16:19:39 +01:00
Sandro
ca4153f6e3
Merge pull request #204836 from Izorkin/add-shadow-tcb 2022-12-24 01:06:04 +01:00
Sandro
1c208e091f
Merge pull request #206275 from wegank/prl-tools-bump 2022-12-24 01:01:46 +01:00
ajs124
fccb0aa808
Merge pull request #207259 from helsinki-systems/upd/nftables
nftables: 1.0.5 -> 1.0.6
2022-12-23 18:39:31 +01:00
Florian Klink
70253b9015
Merge pull request #207119 from gdamjan/bump-systemd
systemd: 252.3 -> 252.4
2022-12-23 16:49:26 +01:00
ajs124
dc2a266a80 lvm2: 2.03.17 -> 2.03.18
- Fix issues reported by coverity scan.
- Fix warning for thin pool overprovisioning on lvextend (2.03.17).
- Add support for writecache metadata_only and pause_writeback settings.
- Fix missing error messages in lvmdbusd.
2022-12-23 16:38:51 +01:00
Florian Klink
6b1a896570
Merge pull request #205121 from alaviss/homed
nixos: systemd-homed support
2022-12-23 13:09:17 +01:00
Ivar Scholten
27d6a8b410 yabai: 4.0.4 -> 5.0.2
This removes the need for the yabai-load-sa script on x86_64-darwin, the
scripting addition can now simply be installed/launched with
`yabai --load-sa`.
2022-12-23 10:21:39 +01:00
Maximilian Bosch
1ecc5414ce
linux/hardened/patches/6.0: 6.0.13-hardened1 -> 6.0.15-hardened1 2022-12-23 08:16:08 +01:00
Maximilian Bosch
7a3b851089
linux/hardened/patches/5.4: 5.4.227-hardened1 -> 5.4.228-hardened1 2022-12-23 08:15:55 +01:00
Maximilian Bosch
afc5e7cc9a
linux/hardened/patches/5.15: 5.15.83-hardened1 -> 5.15.85-hardened1 2022-12-23 08:15:43 +01:00
Maximilian Bosch
d3e0241c4d
linux/hardened/patches/5.10: 5.10.159-hardened1 -> 5.10.161-hardened1 2022-12-23 08:15:31 +01:00
Maximilian Bosch
69bbfa18e4
linux: 6.1 -> 6.1.1 2022-12-23 08:14:44 +01:00
Maximilian Bosch
f6f17ce513
linux: 6.0.13 -> 6.0.15 2022-12-23 08:14:32 +01:00
Maximilian Bosch
734f672b67
linux: 5.4.227 -> 5.4.228 2022-12-23 08:14:20 +01:00
Maximilian Bosch
a464cfcb36
linux: 5.15.83 -> 5.15.85 2022-12-23 08:14:10 +01:00
Maximilian Bosch
600ca141de
linux: 5.10.159 -> 5.10.161 2022-12-23 08:13:54 +01:00
Samuel Dionne-Riel
727cb55005 rtl8821au: 2022-08-22 -> 2022-12-22 2022-12-22 23:12:50 -05:00
Samuel Dionne-Riel
1df9101cd3 rtl8821au: Fix build for ARM 2022-12-22 22:20:23 -05:00
Emery Hemingway
80b7f0165d solo5: retain debugging info 2022-12-22 12:24:15 -06:00
ajs124
866182be1d nftables: 1.0.5 -> 1.0.6
https://www.spinics.net/lists/netfilter/msg60949.html
2022-12-22 15:16:32 +01:00
Naïm Favier
a8fd50b79c
nixos/doc: update custom kernel instructions
Document the `linux.override` way first, then `linuxManualConfig`.

Add a `linux.configEnv` passthru attribute for quickly getting a
`make nconfig`-ready shell.
2022-12-22 01:42:15 +01:00
Naïm Favier
6c563f30fe
linuxManualConfig: don't require lib and stdenv arguments
Reverts 7c7c83e233 which was
only needed for the minimal-kernel.nix test module and clutters the call site.

stdenv can still be overridden with `linuxManualConfig.override { stdenv = ...; }`.
2022-12-22 01:42:15 +01:00
Albert Lloveras
b86dab08a2 Use darwin.apple_sdk_11_0.callPackage 2022-12-22 09:08:02 +11:00
Sandro
42ad772205
Merge pull request #180888 from gdinh/add-plistwatch 2022-12-21 20:38:29 +01:00
Dmitry Ivankov
511f21df7c darwin.apple_sdk_11_0: add Security dependency on xpc
Some packages like `bazel-watcher` seems to have broken after
9dc3b14859

Where `xpc` was removed from `IOSurface` dependencies.
`CoreServices` were pulling `xpc` via `IOSurface` and so `Security`
didn't break. Now explicit dependency on `xpc` is needed to avoid
errors like
```
In file included from __main__/external/com_github_fsnotify_fsevents/go_1_10_after.go:6:
In file included from /nix/store/2k3mdkl9jvwwzpbfaqhchfiqjq64046b-apple-framework-CoreServices-11.0.0/Library/Frameworks/CoreServices.framework/Headers/CoreServices.h:39:
In file included from /nix/store/2k3mdkl9jvwwzpbfaqhchfiqjq64046b-apple-framework-CoreServices-11.0.0/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/LaunchServices.h:23:
In file included from /nix/store/2k3mdkl9jvwwzpbfaqhchfiqjq64046b-apple-framework-CoreServices-11.0.0/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Headers/IconsCore.h:23:
In file included from /nix/store/2k3mdkl9jvwwzpbfaqhchfiqjq64046b-apple-framework-CoreServices-11.0.0/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/OSServices.h:29:
In file included from /nix/store/2k3mdkl9jvwwzpbfaqhchfiqjq64046b-apple-framework-CoreServices-11.0.0/Library/Frameworks/CoreServices.framework/Frameworks/OSServices.framework/Headers/CSIdentity.h:43:
In file included from /nix/store/dg51rm1bapffbqvn46bh43km4dhcsy9p-apple-framework-Security-11.0.0/Library/Frameworks/Security.framework/Headers/Security.h:87:
/nix/store/dg51rm1bapffbqvn46bh43km4dhcsy9p-apple-framework-Security-11.0.0/Library/Frameworks/Security.framework/Headers/SecCode.h:35:10: fatal error: 'xpc/xpc.h' file not found
         ^~~~~~~~~~~
```

Should help with https://github.com/NixOS/nixpkgs/pull/203519
2022-12-21 17:05:16 +01:00
Дамјан Георгиевски
47de6ecabb systemd: 252.3 -> 252.4
also fixes an security issue with systemd-coredump:
https://www.openwall.com/lists/oss-security/2022/12/21/3
2022-12-21 17:03:30 +01:00
Aaron Bieber
33ae410afa
virtio_vmmci 0.4.0 -> 0.5.0 2022-12-21 08:42:16 -07:00
Naïm Favier
cf568d20d5
linux: remove modDirVersionArg argument
It's redundant with `argsOverride.modDirVersion`.
2022-12-21 13:23:28 +01:00
Naïm Favier
fc346c5e62
linux: use lib.versions.pad for modDirVersion 2022-12-21 13:23:28 +01:00
Martin Weinelt
0f7b08da99
openvswitch-lts: 2.17.3 -> 2.17.5
Fixes LLDP underflow issue while parsing malformed Auto Attach TLVs.

https://www.openvswitch.org/releases/NEWS-2.17.4.txt
https://www.openvswitch.org/releases/NEWS-2.17.5.txt
2022-12-20 23:33:26 +01:00
Martin Weinelt
050c526a36
openvswitch: 3.0.1 -> 3.0.3
Fixes LLDP underflow issue while parsing malformed Auto Attach TLVs.

https://www.openvswitch.org/releases/NEWS-3.0.2.txt
https://www.openvswitch.org/releases/NEWS-3.0.3.txt
2022-12-20 23:31:41 +01:00
Vladimír Čunát
3c6d63d22c
rtw89-firmware: fixup build after rtw89 update
It didn't build since commit f170b6a85f2 from PR #206855
This is just a stop-gap measure to unblock unstable-small channel.
2022-12-20 20:42:04 +01:00
Sandro
9eec887099
Merge pull request #204682 from Luflosi/update/raspberrypi-eeprom
raspberrypi-eeprom: 2022.04.26-138a1 -> 2022.12.07-138a1
2022-12-20 16:06:13 +01:00
K900
8bda09a85d
Merge pull request #206962 from LunNova/lunnova/linux-firmware-202212
linux-firmware: 20221109 -> 20221214
2022-12-20 11:56:37 +03:00
Pedro Antunes
842df7623e rtw89: unstable-2021-10-21 -> unstable-2022-12-18
There was no support for 8852BE, and 8853CE devices.
2022-12-20 08:25:24 +01:00
Sandro
0d2eab489a
Merge pull request #206200 from X9VoiD/broadcom-sta-fix-6.1
Fixes https://github.com/NixOS/nixpkgs/issues/206867
2022-12-20 01:48:15 +01:00
markuskowa
f772c7d8ab
Merge pull request #206367 from r-ryantm/auto-update/intel-cmt-cat
intel-cmt-cat: 4.4.1 -> 4.5.0
2022-12-19 22:19:16 +01:00
Otavio Salvador
6ecf1403e3 rtl88x2bu: 2022-08-18 -> 2022-12-17
Fixes build with 6.1.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2022-12-19 17:47:41 -03:00
Jörg Thalheim
adf346ae01
Merge pull request #206632 from Mic92/bcc
linuxPackages.bcc: 0.25.0 -> 0.26.0
2022-12-19 19:22:00 +00:00
github-actions[bot]
141c0ed100
Merge staging-next into staging 2022-12-19 18:01:41 +00:00
Jörg Thalheim
9bf4ec6909
Merge pull request #206645 from Mic92/nix-ld
nixos/nix-ld: set NIX_LD by default
2022-12-19 16:26:02 +00:00
Jörg Thalheim
aa65dd1225 nix-ld: 1.0.2 -> 1.0.3
Diff: https://github.com/mic92/nix-ld/compare/1.0.2...1.0.3
2022-12-19 17:06:41 +01:00
Luna Nova
247defe599
linux-firmware: 20221109 -> 20221214
Main changes of interest are another set of new amdgpu firmwares and updates for existing firmware
2022-12-19 07:20:48 -08:00
Dominik Xaver Hörl
be2ee8b4a4 linux_xanmod: note on Multigen. LRU being on by default 2022-12-19 15:18:06 +01:00
Dominik Xaver Hörl
95c27f5975 linux: enable Multi-Gen LRU by default 2022-12-19 15:18:05 +01:00
Dominik Xaver Hörl
6486611984 linux: build with support for Multi-Gen LRU 2022-12-19 15:18:05 +01:00
github-actions[bot]
c45ee202ae
Merge staging-next into staging 2022-12-19 12:02:11 +00:00
Jacek Galowicz
1b33417f69
Merge pull request #205343 from liketechnik/tuxedo-keyboard-3.1.1
linuxPackages.tuxedo-keyboard: 3.0.9 -> 3.1.1
2022-12-19 07:04:58 +01:00
github-actions[bot]
dc1fa2c776
Merge staging-next into staging 2022-12-19 00:02:57 +00:00
Anderson Torres
b83c2ee15c
Merge pull request #206697 from hmenke/sof-firmware
sof-firmware: 2.2.2 -> 2.2.3
2022-12-18 16:20:16 -03:00
github-actions[bot]
dc7ebb0163
Merge staging-next into staging 2022-12-18 18:01:41 +00:00
Valentin Gagarin
f782da699e
Merge pull request #206646 from figsoda/typos 2022-12-18 18:27:57 +01:00
Henri Menke
5fb679b369
sof-firmware: 2.2.2 -> 2.2.3
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
2022-12-18 15:29:19 +01:00
R. Ryantm
4b3364fcb7 brillo: 1.4.10 -> 1.4.11 2022-12-18 21:24:42 +08:00
figsoda
ec8cb34358 treewide: fix typos 2022-12-17 19:39:44 -05:00
github-actions[bot]
7984a7dacb
Merge staging-next into staging 2022-12-18 00:05:50 +00:00
Jörg Thalheim
af375039f1 linuxPackages.bcc: 0.25.0 -> 0.26.0
Diff: https://github.com/iovisor/bcc/compare/v0.25.0...v0.26.0
2022-12-18 00:10:29 +01:00
PedroHLC ☭
b2025f0f7f
linuxKernel.kernels.linux_lqx: 6.0.13-lqx2 -> 6.0.13-lqx3 2022-12-17 15:47:59 -03:00
Theodore Ni
59aec3697e catfs: patch to compile using rust 1.65 2022-12-17 10:02:35 -08:00
Theodore Ni
d7ec1a3251 catfs: unstable-2020-03-21 -> 0.9.0 2022-12-17 10:02:35 -08:00
github-actions[bot]
887e342eaa
Merge staging-next into staging 2022-12-17 18:01:35 +00:00
Sandro
fb769ee3c3
pam-reattach: cleanup (#205509) 2022-12-17 17:35:23 +01:00
Sergei Trofimovich
f6bdf4360c
Merge pull request #205851 from trofi/linuxHeaders-update
linuxHeaders: 6.0 -> 6.1
2022-12-17 14:14:05 +00:00
Izorkin
05046655d8
shadow: cleanup 2022-12-17 12:10:59 +03:00
Izorkin
0e32191623
shadow: add tcb support 2022-12-17 12:10:59 +03:00
github-actions[bot]
61a0176830
Merge staging-next into staging 2022-12-17 00:02:50 +00:00
github-actions[bot]
30b97b0e83
Merge master into staging-next 2022-12-17 00:02:17 +00:00
Guillaume Girol
211c7cbcf4
Merge pull request #206344 from NickCao/libcgroup-cross
libcgroup: fix cross compilation
2022-12-16 21:06:01 +00:00
Vladimír Čunát
5bfe30aafa
Merge branch 'master' into staging-next 2022-12-16 21:58:10 +01:00
Sandro
3e676fc838
Merge pull request #204621 from Izorkin/update-shadow 2022-12-16 20:35:18 +01:00
Vladimír Čunát
a68595ff05
fwts: fixup build by using older make 2022-12-16 20:04:17 +01:00