Commit Graph

27929 Commits

Author SHA1 Message Date
K900
5dcee0f6ab linux_6_9: 6.9.5 -> 6.9.6 2024-06-21 17:31:50 +03:00
Linus Heckemann
e5adf0b547 maintainers: drop lheckemann 2024-06-21 15:54:54 +02:00
Franz Pletz
c3f456b43a
Merge pull request #321313 from herbetom/update-batman-adv 2024-06-21 14:17:50 +02:00
Jussi Kuokkanen
95cc312a68 pkgs/os-specific: remove licenses.gpl2 2024-06-21 12:28:43 +03:00
Samuel Dionne-Riel
1c0bec2499
Merge pull request #321436 from samueldr/ce n'est qu'un au revoir, à la prochaine! 2024-06-21 03:24:13 -04:00
rnhmjoj
5c9de39aba
linux/common-config: enable IPsec over TCP
This enable kernel support for TCP encapsulation of IPsec (RFC8229)

This is required for networks where the standard mode is not available
due to firewall rules blocking UDP traffic.
2024-06-21 08:32:42 +02:00
Vladimír Čunát
879821772c
Revert #320852: Clean up cross bootstrapping
It rebuilt stdenv on *-darwin; we can't do that in nixpkgs master.
This reverts commit 2f20501c5f, reversing
changes made to fd469c24af.
2024-06-21 07:48:24 +02:00
Samuel Dionne-Riel
b93fea815d input-utils: Drop unmaintained package 2024-06-21 01:06:01 -04:00
Samuel Dionne-Riel
dd669c422b syslinux: Drop samueldr as maintainer 2024-06-20 20:47:04 -04:00
Samuel Dionne-Riel
c9d484b7b8 raspberrypi-armstubs: Drop samueldr as maintainer 2024-06-20 20:46:00 -04:00
Masum Reza
a87387ec65
Merge pull request #321261 from DontEatOreo/update-raycast
raycast: 1.77.0 -> 1.77.1
2024-06-21 00:01:58 +05:30
Tom Herbers
878a7de720
batman-adv: 2024.1 -> 2024.2
Changelog: https://www.open-mesh.org/news/117
2024-06-20 20:23:43 +02:00
John Ericson
1743662e55 *bsd.mkDerivation: Fix comment about STRIPBIN 2024-06-20 10:55:02 -04:00
John Ericson
2f20501c5f
Merge pull request #320852 from obsidiansystems/fewer-cross-suffix-attrs
Clean up cross bootstrapping
2024-06-20 10:44:20 -04:00
DontEatOreo
5c5200faf7
raycast: 1.77.0 -> 1.77.1 2024-06-20 16:53:42 +03:00
K900
20b7b4f619
Merge pull request #320228 from K900/opengl-cleanups
treewide: big opengl cleanups
2024-06-20 12:37:59 +03:00
Philip Taron
2f3e0581ef
linuxKernel: drop conditionals for versions greater Linux 4.16; that's all of them 2024-06-19 10:20:15 -07:00
DontEatOreo
74988451f1
raycast: 1.76.1 -> 1.77.0
Changelog: https://www.raycast.com/changelog/1-77-0
2024-06-19 20:19:15 +03:00
superherointj
2b85f0036f
Merge pull request #320866 from alyssais/linux-6.10-rc4
Linux kernels 2024-06-18
2024-06-19 10:51:56 -03:00
installer
6704e2a673 linuxKernel.kernels.linux_lqx: 6.9.3-lqx1 -> 6.9.5-lqx1 2024-06-19 00:27:59 +02:00
installer
b199dd1d9e linuxKernel.kernels.linux_zen: 6.9.3-zen1 -> 6.9.5-zen1 2024-06-19 00:27:01 +02:00
Philip Taron
aab5651662
linuxKernel: depend exclusively on elfutils 2024-06-18 14:54:33 -07:00
John Ericson
51f1ecaa59 Clean up cross bootstrapping
For a long time, we've had `crossLibcStdenv`, `*Cross` libc attributes,
and `*bsdCross` pre-libc package sets. This was always bad because
having "cross" things is "not declarative": the naming doesn't reflect
what packages *need* but rather how we *provide* something. This is
ugly, and creates needless friction between cross and native building.

Now, almost all of these `*Cross` attributes are gone: just these are
kept:

- Glibc's and Musl's are kept, because those packages are widely used
  and I didn't want to risk changing the native builds of those at this
  time.

- generic `libcCross`, `theadsCross`, and friends, because these relate
  to the convolulted GCC bootstrap which still needs to be redone.

The BSD and obscure Linux or freestnanding libcs have conversely all
been made to use a new `stdenvNoLibc`, which is like the old
`crossLibcStdenv` except:

1. It usable for native and cross alike

2. It named according to what it *is* ("a standard environment without
   libc but with a C compiler"), rather than some non-compositional
   jargon ("the stdenv used for building libc when cross compiling",
   yuck).

I should have done this change long ago, but I was stymied because of
"infinite recursions". The problem was that in too many cases we are
overriding `stdenv` to *remove* things we don't need, and this risks
cyles since those more minimal stdenvs are used to build things in the
more maximal stdenvs.

The solution is to pass `stage.nix` `stdenvNoCC`, so we can override to
*build up* rather than *tear down*. For now, the full `stdenv` is also
passed, so I don't need to change the native bootstraps, but I can see
this changing as we make things more uniform and clean those up.

Finally, the BSDs also had to be cleaned up, since they have a few
pre-libc dependencies, demanding a systematic approach. I realized what
rhelmot did in 61202561d9 (specify what
packages just need `stdenvNoLibc`) is definitely the right approach for
this, and adjusted NetBSD and OpenBSD to likewise use it.
2024-06-18 17:04:16 -04:00
Nick Cao
7f578aebd1
Merge pull request #320694 from r-ryantm/auto-update/ethq
ethq: 0.6.3 -> 0.7.0
2024-06-18 16:28:29 -04:00
John Ericson
4bd76beac0 windows.mingw_w64*: Fetch common attrs from the headers package
This is the most upstream one, and so to avoid infinite recursion we
should get the things from it. This isn't needed per-se now, but will be
after the next commit.
2024-06-18 15:52:16 -04:00
Alyssa Ross
a36965d8f0
linux-rt_5_15: 5.15.158-rt76 -> 5.15.160-rt77 2024-06-18 21:42:40 +02:00
Alyssa Ross
cf524d2185
linux_testing: 6.10-rc3 -> 6.10-rc4 2024-06-18 21:42:10 +02:00
John Ericson
f183a68f39
Merge pull request #320840 from obsidiansystems/bsd-misc
A few misc BSD related cleanups
2024-06-18 15:25:50 -04:00
John Ericson
b6727bbeac netbsd: Fetch source once
The big `fetchCVS` is slow, but a one-time cost. Everything else is much
faster, and not having to manage a gazillion `version` and `sha256`
fields is much easier.

This brings NetBSD in line with how we do FreeBSD and OpenBSD.
2024-06-18 14:11:29 -04:00
Aleksana
cdba71c00f
Merge pull request #292880 from peat-psuwit/for-upstream/linux-rpi_20240124
linux-rpi: stable_20231123 -> stable_20240124, raspberrypifw: stable_20231123 -> 1.20240529, raspberrypiWirelessFirmware: unstable-2023-11-15 -> unstable-2024-02-26
2024-06-19 01:11:09 +08:00
Aleksana
95de3b75dd
Merge pull request #320549 from DontEatOreo/update-raycast
raycast: 1.76.0 -> 1.76.1
2024-06-18 19:08:33 +08:00
R. Ryantm
5e091e5aff ethq: 0.6.3 -> 0.7.0 2024-06-18 05:21:15 +00:00
Doron Behar
de68bb0a22
Merge pull request #320589 from doronbehar/pkg/wiringPi
wiringpi: 2.61-1 -> 3.6
2024-06-18 07:48:21 +03:00
Nick Cao
04f501a310
Merge pull request #319924 from NickCao/bpftune
bpftune: 0-unstable-2024-05-17 -> 0-unstable-2024-06-07
2024-06-17 18:26:22 -04:00
Doron Behar
f841416d21 wiringpi: 2.61-1 -> 3.6
Diff: https://github.com/WiringPi/WiringPi/compare/2.61-1...3.6
2024-06-17 21:19:03 +03:00
Doron Behar
30cece054c wiringpi: format with nixfmt (RFC 166) 2024-06-17 21:18:54 +03:00
Doron Behar
5d8d521af2 wiringpi: help nix-update find the src position 2024-06-17 21:18:16 +03:00
Florian Klink
0ec9664096
Merge pull request #320197 from flokli/macfuse-4.8.0
macfuse: 4.4.1 -> 4.8.0
2024-06-17 20:32:54 +03:00
Audrey Dutcher
c9b08ff772 freebsd.getent: init 2024-06-17 08:57:44 -07:00
Audrey Dutcher
d942e3fec6 freebsd.pwd_mkdb: init 2024-06-17 08:57:43 -07:00
Audrey Dutcher
27b9567edd freebsd.nscd: init 2024-06-17 08:57:42 -07:00
Audrey Dutcher
b51604ab2a freebsd.mount: init 2024-06-17 08:57:40 -07:00
Audrey Dutcher
c171489cc5 freebsd.top: init 2024-06-17 08:57:39 -07:00
Audrey Dutcher
77177e301e freebsd.sysctl: init 2024-06-17 08:57:37 -07:00
DontEatOreo
310efcb26e
raycast: 1.76.0 -> 1.76.1 2024-06-17 17:35:59 +03:00
Florian Klink
1c66406890
Merge pull request #320136 from trofi/nsncd-update
nsncd: unstable-2024-01-16 -> unstable-2024-03-18
2024-06-17 11:50:35 +03:00
John Ericson
c5b1ce10d9
Merge pull request #315176 from rhelmot/freebsd-minimal3/freebsd-various
freebsd: various improvements and new packages
2024-06-16 23:16:31 -04:00
Pol Dellaiera
d57e37b77b
Merge pull request #319746 from elohmeier/rm-maintainer
Remove myself from some packages I no longer actively use
2024-06-16 22:37:01 +02:00
Ratchanan Srirattanamet
02b05c0d32 raspberrypiWirelessFirmware: unstable-2023-11-15 -> unstable-2024-02-26 2024-06-17 00:56:22 +07:00
Ratchanan Srirattanamet
146bd2d9cf raspberrypifw: stable_20231123 -> 1.20240529
The repo starts to tag commits again, so we use the tag for version
again.
2024-06-17 00:56:22 +07:00
Ratchanan Srirattanamet
76c020466b linux-rpi: 6.1.63-stable_20231123 -> 6.6.31-stable_20240529 2024-06-17 00:56:00 +07:00
K900
c3b89ba0b3
Merge pull request #318875 from athre0z/kernel-build-ids
linuxPackages: bring back GNU build ID for kernels
2024-06-16 17:20:08 +03:00
K900
1be5b4e02c linux_latest-libre: 19575 -> 19584 2024-06-16 15:29:43 +03:00
K900
bc82f4767c linux_4_19: 4.19.315 -> 4.19.316 2024-06-16 15:29:17 +03:00
K900
ced6061d86 linux_5_4: 5.4.277 -> 5.4.278 2024-06-16 15:29:15 +03:00
K900
ced403edce linux_5_10: 5.10.218 -> 5.10.219 2024-06-16 15:29:02 +03:00
K900
1013a39e6d linux_5_15: 5.15.160 -> 5.15.161 2024-06-16 15:28:49 +03:00
K900
2ca76e985b linux_6_1: 6.1.93 -> 6.1.94 2024-06-16 15:28:31 +03:00
K900
791a1c55e0 linux_6_6: 6.6.33 -> 6.6.34 2024-06-16 15:28:15 +03:00
K900
f6b2cdd480 linux_6_9: 6.9.4 -> 6.9.5 2024-06-16 15:28:10 +03:00
K900
951601ccab treewide: drop amdgpu-pro
It's dead, Jim.
2024-06-16 13:39:52 +03:00
Atemu
e5e05859f1
Merge pull request #319637 from Shawn8901/xnamod_update
linux_xanmod, linux_xanmod_latest: 2024-06-12
2024-06-16 09:36:49 +02:00
Florian Klink
73406d2718 macfuse: 4.4.1 -> 4.8.0 2024-06-16 10:06:44 +03:00
Sergei Trofimovich
bd5d563f2d nsncd: unstable-2024-01-16 -> unstable-2024-03-18 2024-06-15 21:59:17 +01:00
Pyrox
d5e038660c
sssd: 2.9.4 -> 2.9.5
https://sssd.io/release-notes/sssd-2.9.5.html
2024-06-15 14:36:40 -04:00
Robert Helgesson
ddb515d3fd sd-switch: 0.4.0 -> 0.5.0 2024-06-15 14:57:27 +02:00
R. Ryantm
f9fcf28ade freeipa: 4.12.0 -> 4.12.1 2024-06-15 05:52:00 +00:00
Tristan Ross
b51cf6ec0e
kexec-tools: fix compiling with llvm
Fixes #317526
2024-06-14 17:45:12 -07:00
Nick Cao
21b922257f
bpftune: 0-unstable-2024-05-17 -> 0-unstable-2024-06-07
Diff: 83115c56cf...04bab5dd30
2024-06-14 18:10:53 -04:00
Timo Kaufmann
f27ac06c8c
Merge pull request #311238 from fairct/remove-broken-from-r8168
linuxPackages.r8168: 8.052.01 -> 8.053.00, remove broken
2024-06-14 10:30:35 +02:00
Enno Richter
c609e630a2 tuna: remove elohmeier as maintainer 2024-06-14 09:22:19 +02:00
Enno Richter
b3a3578189 ksmbd-tools: remove elohmeier as maintainer 2024-06-14 09:22:19 +02:00
Shawn8901
7697d0de1d xanmod-kernels: enable RCU_BOOST and RCU_EXP_KTHREAD
follows commit 0be69880f2
2024-06-13 23:03:09 +02:00
Shawn8901
81c4710440 linux_xanmod: 6.8.11 -> 6.9.4 2024-06-13 21:31:50 +02:00
Shawn8901
2deba58dd8 linux_xanmod: 6.6.32 -> 6.6.33 2024-06-13 21:31:28 +02:00
Nick Cao
15ef0de6ed
Merge pull request #318297 from otavio/rtl88x2bu
linuxPackages.rtl88x2bu: unstable-2023-11-29 -> unstable-2024-05-11
2024-06-12 21:04:26 -04:00
Vladimír Čunát
9d428a5276
Merge #316075: staging-next 2024-05-31 2024-06-12 18:48:53 +02:00
Audrey Dutcher
ae7c4ca17f freebsd.libcxxrt: fixup in preparation for inclusion in stdenv
- add option to build without libcxx
- don't build with libcxx
- distribute headers
2024-06-12 07:41:44 -07:00
Otavio Salvador
32a6be9aae linuxPackages.rtl88x2bu: unstable-2023-11-29 -> unstable-2024-06-09
Fixes: #319097.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2024-06-12 11:38:53 -03:00
github-actions[bot]
fddadbd234
Merge master into staging-next 2024-06-12 12:01:10 +00:00
Maximilian Bosch
51c2144ca7
linux-rt_5_10: 5.10.217-rt109 -> 5.10.218-rt110 2024-06-12 13:49:14 +02:00
Maximilian Bosch
de7df0d3eb
linux_6_1: 6.1.92 -> 6.1.93 2024-06-12 13:48:27 +02:00
Maximilian Bosch
d1d7003000
linux_6_6: 6.6.32 -> 6.6.33 2024-06-12 13:48:05 +02:00
Maximilian Bosch
ee6d6317b4
linux_6_9: 6.9.3 -> 6.9.4 2024-06-12 13:47:50 +02:00
Peder Bergebakken Sundt
2279c02ec5
Merge pull request #313668 from crayor1/master
autofs: 5.1.6 -> 5.1.9
2024-06-12 12:59:01 +02:00
github-actions[bot]
e145b7fb56
Merge master into staging-next 2024-06-12 06:01:00 +00:00
Yureka
0b3a8c0684
multipath-tools: clean up derivation (#318745)
The upstream devs have pointed out[^1] that these sed commands are obsolete
and are responsible for issues with building the 0.9.9 release (not tagged yet)

[^1]: https://github.com/opensvc/multipath-tools/pull/85#issuecomment-2153254588
2024-06-12 06:57:36 +02:00
Jörg Rebenstorf
c88d8fe334 autofs: 5.1.6 -> 5.1.9 2024-06-11 17:07:47 +02:00
github-actions[bot]
491c6c405d
Merge master into staging-next 2024-06-11 06:01:11 +00:00
K900
cae5fb3e5c syslinux: pick proposed patch to fix build on gnu-efi >= 3.0.17 2024-06-11 07:58:50 +03:00
K900
16736cb3c7
Merge pull request #318828 from K900/linux-firmware-20240610
linux-firmware: 20240513 -> 20240610
2024-06-11 07:48:17 +03:00
github-actions[bot]
79bbeb1aaf
Merge master into staging-next 2024-06-11 00:02:06 +00:00
Nick Cao
88cf973c56
Merge pull request #318639 from codebam/rc3
linux_testing: 6.10-rc2 -> 6.10-rc3
2024-06-10 18:31:14 -04:00
Joel Höner
818bb3a829 linuxPackages: consistently emit GNU build ID
Other than stated in the comment on the removed code, SHA1 build IDs
do not affect reproducibility. The previous code additionally didn't
actually work for a lot of older kernels, because the regexp accidentally
didn't apply: older kernels use `--build-id` instead of
`--build-id=sha1`.
2024-06-10 20:29:58 +02:00
Weijia Wang
652e207126
Merge pull request #313431 from wegank/gnu-efi-bump
gnu-efi: 3.0.15 -> 3.0.18
2024-06-10 20:19:15 +02:00
R. Ryantm
c96f50c314 libzbc: 5.14.0 -> 6.0.0 2024-06-10 16:53:01 +00:00
K900
34e518edbc linux-firmware: 20240513 -> 20240610 2024-06-10 17:58:32 +03:00
github-actions[bot]
4b24ae6c36
Merge master into staging-next 2024-06-10 12:01:16 +00:00
Sandro
f4a9d6edb4
Merge pull request #309932 from mmlb/update-nvme-cli
libnvme: 1.7.1 -> 1.9; nvme-cli: 2.7.1 -> 2.9.1
2024-06-10 13:50:50 +02:00
Peder Bergebakken Sundt
477cb4d327
Merge pull request #316308 from r-ryantm/auto-update/openiscsi
openiscsi: 2.1.9 -> 2.1.10
2024-06-10 12:52:59 +02:00
github-actions[bot]
c96a6f10ef
Merge master into staging-next 2024-06-10 00:02:20 +00:00
Sean Behan
c0079b0d8a
linux_testing: 6.10-rc2 -> 6.10-rc3 2024-06-09 18:38:24 -04:00
Sean Behan
4b08ae13db linux_testing: 6.10-rc1 -> 6.10-rc2 2024-06-09 23:17:08 +01:00
Alyssa Ross
3df6bb2c85
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/applications/blockchains/polkadot/default.nix
2024-06-09 22:47:12 +01:00
Alexis Hildebrandt
f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Alexis Hildebrandt
bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
R. Ryantm
ab5e512b8d ipset: 7.21 -> 7.22 2024-06-09 05:49:35 +00:00
github-actions[bot]
4f7f1065a7
Merge master into staging-next 2024-06-09 00:03:04 +00:00
Bobby Rong
1d68a6ff89
nvidia-x11: Fix libXNVCtrl license
Assuming neither libXNVCtrl nor its dependencies are nonfree
we can have this built on Hydra.

Also libXNVCtrl does not provide the mainProgram.
2024-06-08 23:43:22 +08:00
Nick Cao
96f4c83a71
Revert "ffado: fix hash, see https://ffado.org/posts/ffado-2.4.8-tarball_fix/" 2024-06-08 09:24:08 -04:00
Nick Cao
42cb6fb3bb
Merge pull request #317396 from luochen1990/fix-ffado-hash
ffado: fix hash, see https://ffado.org/posts/ffado-2.4.8-tarball_fix/
2024-06-08 09:24:00 -04:00
github-actions[bot]
f22f5c2c0c
Merge master into staging-next 2024-06-08 00:02:16 +00:00
Sandro
224c195208
Merge pull request #311415 from toastal/zfs-2.2.4-unstable-2024-05-13
zfs_unstable: 2.2.4 → 2.2.4-unstable-2024-05-13
2024-06-07 22:21:59 +02:00
github-actions[bot]
c72bae2be7
Merge master into staging-next 2024-06-07 18:01:28 +00:00
Bernardo Meurer
7b0b373e54
Merge pull request #317767 from DontEatOreo/update-raycast
raycast: 1.75.2 -> 1.76.0
2024-06-07 11:59:41 -04:00
github-actions[bot]
ecc75d299d
Merge master into staging-next 2024-06-07 12:01:27 +00:00
Sandro
f9895b9567
Merge pull request #317187 from SuperSandro2000/nvidia-settings-misc
nvidia-x11: minor cleanups, don't require gtk2 input when it is disabled
2024-06-07 12:51:02 +02:00
github-actions[bot]
4ace29447c
Merge master into staging-next 2024-06-07 00:02:15 +00:00
Sandro Jäckel
068dda7325 nvidia-x11: move wrapGAppsHook3 to nativeBuildInputs 2024-06-07 00:56:10 +02:00
Sandro
568ecee159
Merge pull request #316148 from dbalan/hid-t150 2024-06-06 22:43:00 +02:00
Artturin
5e838227e3
Merge pull request #316717 from Artturin/ratbagtypelib
{libratbag,openrazer-daemon,whipper}: fix typelib error
2024-06-06 21:38:56 +03:00
github-actions[bot]
9f1130c9a6
Merge master into staging-next 2024-06-06 18:00:57 +00:00
ajs124
84cb7f5eb5
Merge pull request #317084 from baloo/baloo/kvdo/kernel-5.17
kvdo: build is broken on kernel < 5.17
2024-06-06 19:42:32 +02:00
DontEatOreo
2c8df948c6
raycast: 1.75.2 -> 1.76.0
Changelog: https://www.raycast.com/changelog/1-76-0
2024-06-06 17:30:30 +03:00
Sandro Jäckel
f70e746119
nvidia-x11: don't require gtk2 input when it is disabled 2024-06-06 15:21:07 +02:00
Artturin
581b568784 targetcli: fix typelib error
Add pygobject3,glib,gobject-introspection to not rely on something propagating them
2024-06-06 15:27:42 +03:00
Wroclaw
2ac2449841 nixos-rebuild: document supported flake-related options 2024-06-06 08:54:21 +02:00
LuoChen
f96126d678
ffado: fix hash, see https://ffado.org/posts/ffado-2.4.8-tarball_fix/ 2024-06-06 09:34:05 +08:00
github-actions[bot]
5839a82238
Merge master into staging-next 2024-06-06 00:02:22 +00:00
Nick Cao
aba93d39a9
Merge pull request #317384 from wegank/rectangle-bump
rectangle: 0.79 -> 0.80
2024-06-05 15:30:45 -04:00
Nick Cao
50a2f9d31e
Merge pull request #317271 from Kiskae/nvidia/550.90.07
linuxPackages.nvidiaPackages.production: 550.78 -> 550.90.07
2024-06-05 14:51:31 -04:00
Nick Cao
46a8207b85
Merge pull request #317459 from Kiskae/nvidia/555.52.04
linuxPackages.nvidiaPackages.beta: 555.42.02 -> 555.52.04
2024-06-05 14:50:03 -04:00
github-actions[bot]
7c106be2e0
Merge master into staging-next 2024-06-05 18:00:54 +00:00
Arnout Engelen
437e3a21de
Merge pull request #317169 from raboof/fix/syslinux-gnu-efi-awkwardness-conservative
syslinux: use nixpkgs' gnu-efi
2024-06-05 18:42:19 +02:00
Bernardo Meurer
59f507639d
Merge pull request #316378 from DontEatOreo/update-raycast
raycast: 1.75.1 -> 1.75.2; raycast: remove pipefail
2024-06-05 12:38:00 -04:00
Kiskae
12d0fa9a11 linuxPackages.nvidiaPackages.beta: 555.42.02 -> 555.52.04 2024-06-05 16:14:06 +02:00
Weijia Wang
89801f7ead rectangle: 0.79 -> 0.80 2024-06-05 10:20:41 +02:00
github-actions[bot]
4b2a80fbd0
Merge master into staging-next 2024-06-05 00:02:31 +00:00
Nick Cao
c51bbc122f
Merge pull request #317207 from Kiskae/nvidia/470.256.02
linuxPackages.nvidiaPackages.legacy_470: 470.239.06 -> 470.256.02
2024-06-04 16:46:21 -04:00
Kiskae
c856c20419 linuxPackages.nvidiaPackages.legacy_470: 470.239.06 -> 470.256.02 2024-06-04 21:01:23 +02:00
Kiskae
ceae504c41 linuxPackages.nvidiaPackages.production: 550.78 -> 550.90.07 2024-06-04 20:59:47 +02:00
Samuel Dionne-Riel
19453d29fc
syslinux: Use Nixpkgs' gnu-efi
This resolves awkwardness with the gnu-efi submodule.
Though this builds only the arch-appropriate EFI program, but since it
was not used within Nixpkgs, it shouldn't be an issue.

Co-Authored-By: Arnout Engelen <arnout@bzzt.net>
2024-06-04 15:59:50 +02:00
Sandro Jäckel
ce9d9ba554 nvidia-x11: minor cleanups 2024-06-04 15:22:50 +02:00
Sandro Jäckel
6f193b0162 nvidia-x11: add meta to libXNVCtrl 2024-06-04 15:22:49 +02:00
Alyssa Ross
f27b3096c3
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/os-specific/linux/util-linux/default.nix
2024-06-04 13:31:26 +01:00
Sandro Jäckel
f6f7831460
syslinux: fix replace warning, use https 2024-06-04 13:38:44 +02:00
Sigmanificient
d48a9bb622 treewide: remove unused fetchpatch arguments 2024-06-04 12:40:25 +02:00
K900
f865656fca
Revert "syslinux: Use Nixpkgs' gnu-efi" 2024-06-04 12:18:21 +03:00
Arnout Engelen
391f667df3
Merge pull request #317030 from samueldr/fix/syslinux-gnu-efi-awkwardness
syslinux: Use Nixpkgs' gnu-efi
2024-06-04 08:24:38 +02:00
Arthur Gautier
265f31677e kvdo: build is broken on kernel < 5.17
complete_and_exit has been renamed to kthread_complete_and_exit
2024-06-03 20:48:47 -07:00
Samuel Dionne-Riel
d38bc8b64c syslinux: Use Nixpkgs' gnu-efi
This resolves awkwardness with the gnu-efi submodule.
Though this builds only the arch-appropriate EFI program, but since it
was not used within Nixpkgs, it shouldn't be an issue.
2024-06-03 21:59:06 -04:00
Sandro Jäckel
d4bcd3a831 syslinux: fix replace warning, use https 2024-06-03 15:40:51 -04:00
github-actions[bot]
ddde12c6f7
Merge master into staging-next 2024-06-03 18:02:09 +00:00
Eelco Dolstra
8d2a765adf Let-float various fromJSON calls to avoid repeated JSON reading/parsing
Some of these were read/parsed dozens of times in a `nix search`
invocation, and in particular the MELPA recipes archive (3 MiB) was
read 4 times.
2024-06-03 18:52:42 +02:00
Thiago Kenji Okada
3889c888be
Merge pull request #316804 from JerrySM64/update-kernels
linuxKernel.kernels.linux_zen: 6.9.2-zen1 -> 6.9.3-zen1 ; linuxKernel.kernels.linux_lqx: 6.8.11-lqx1 -> 6.9.3-lqx1
2024-06-03 17:45:01 +01:00
Nick Cao
4877467e3e
Merge pull request #316154 from r-ryantm/auto-update/freeipa
freeipa: 4.11.1 -> 4.12.0
2024-06-03 11:35:01 -04:00
Manuel Mendez
de3e916be8 nvme-cli: 2.7.1 -> 2.9.1 2024-06-03 10:26:22 -04:00
Manuel Mendez
abd1525cd8 libnvme: 1.7.1 -> 1.9 2024-06-03 10:26:22 -04:00
Jerry Starke
f450173677 linuxKernel.kernels.linux_lqx: 6.8.11-lqx1 -> 6.9.3-lqx1 2024-06-03 07:20:52 +02:00
Jerry Starke
9f3c5f53d2 linuxKernel.kernels.linux_zen: 6.9.2-zen1 -> 6.9.3-zen1 2024-06-03 07:18:48 +02:00
github-actions[bot]
c987c730bb
Merge master into staging-next 2024-06-03 00:02:20 +00:00
Sandro
378e91fcdf
Merge pull request #293313 from afh/update-apparency 2024-06-02 23:46:56 +02:00
Sandro
4dd2b5f31c
Merge pull request #293032 from afh/update-refactor-dockutil 2024-06-02 22:24:34 +02:00
Pol Dellaiera
3b70d65c09
Merge pull request #316421 from markuskowa/upd-rdma-core
rdma-core: 51.0 -> 52.0
2024-06-02 21:49:14 +02:00
Artturin
e8f703ab9b libratbag: fix ratbagctl typelib error
`ImportError: cannot import name Gio, introspection typelib not found`
2024-06-02 21:47:48 +03:00
github-actions[bot]
97d15b22bf
Merge master into staging-next 2024-06-02 18:01:10 +00:00
Sandro
0e8ee5ed1b
Merge pull request #290920 from Emantor/bump/kernelshark 2024-06-02 17:05:39 +02:00
Martin Weinelt
0819bf1991
Merge pull request #316343 from mweinelt/microcode-intel-20240531
microcodeIntel: 20240514 -> 20240531
2024-06-02 16:43:20 +02:00
Weijia Wang
8dbed921eb
Merge pull request #310190 from r-ryantm/auto-update/setools
setools: 4.5.0 -> 4.5.1
2024-06-02 15:46:16 +02:00
github-actions[bot]
c56c306bc3
Merge master into staging-next 2024-06-02 12:01:17 +00:00
Artturin
4914b20158
Merge pull request #315346 from uninsane/pr-wpa_supplicant-dbusfix
wpa_supplicant: fix broken dbus .service file
2024-06-02 14:38:05 +03:00
github-actions[bot]
f4392ae842
Merge master into staging-next 2024-06-01 18:01:06 +00:00
Alexis Hildebrandt
c3a66fb0d9 apparency: 1.5.1 -> 2.0 2024-06-01 19:36:58 +02:00
Weijia Wang
fc5ad2d061
Merge pull request #315515 from wegank/prl-tools-bump
linuxPackages_latest.prl-tools: 19.3.1-54941 -> 19.4.0-54962
2024-06-01 17:21:29 +02:00
toastal
1fd084b264 zfs_unstable: 2.2.4 → 2.2.4-unstable-2024-05-29 2024-06-01 17:37:41 +07:00
DontEatOreo
dcf680520d
raycast: remove pipefail
- `pipefail` is set by default in writeShellApplication

Source: https://nixos.org/manual/nixpkgs/stable/#trivial-builder-writeShellApplication
2024-06-01 12:59:00 +03:00
DontEatOreo
504995307c
raycast: 1.75.1 -> 1.75.2 2024-06-01 12:58:48 +03:00
Martin Weinelt
44bfda1c46
microcodeIntel: 20240514 -> 20240531
https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases/tag/microcode-20240531
2024-06-01 08:38:27 +02:00
R. Ryantm
9067316ffe openiscsi: 2.1.9 -> 2.1.10 2024-06-01 01:34:49 +00:00
Wroclaw
509bbd7a4a nixos-rebuild: Document all supported builder flags in manpage 2024-06-01 03:08:23 +02:00
github-actions[bot]
738e64a2f9
Merge master into staging-next 2024-06-01 00:02:18 +00:00
Nick Cao
581c2dad45
Merge pull request #316267 from Kiskae/nvidia/550.40.63
linuxPackages.nvidiaPackages.vulkan_beta: 550.40.61 -> 550.40.63
2024-05-31 18:45:19 -04:00
Kiskae
64c4d20d62 linuxPackages.nvidiaPackages.vulkan_beta: 550.40.61 -> 550.40.63 2024-05-31 23:44:54 +02:00
Audrey Dutcher
41c2bba81e freebsd.ldd: init 2024-05-31 13:25:22 -07:00
Audrey Dutcher
8d5db1db16 freebsd.iconv: init 2024-05-31 13:25:22 -07:00
Audrey Dutcher
1bc374d91d freebsd.cp: init
While cp is part of freebsd.bin, this particular package is critical for
early stdenv boot and has its own derivation to require fewer
dependencies
2024-05-31 13:25:22 -07:00
Audrey Dutcher
2bf350788c freebsd.bin: init
This is a single derivation containing everything in /bin on a normal
FreeBSD machine, which is an incredibly compact set of core utilities.
2024-05-31 13:25:22 -07:00
Audrey Dutcher
fe0a405397 freebsd.locale: init 2024-05-31 13:25:22 -07:00
Audrey Dutcher
2c41534d75 freebsd.locales: init
The parameters to control which locales are built are placeholders.
2024-05-31 13:25:22 -07:00
Audrey Dutcher
ce0a5ce340 freebsd.localedef: init 2024-05-31 13:25:10 -07:00
github-actions[bot]
c0b9a61616
Merge master into staging-next 2024-05-31 18:01:21 +00:00
Audrey Dutcher
892f600edd freebsd.libcapsicum: init 2024-05-31 10:37:44 -07:00
Audrey Dutcher
7853602867 freebsd.libcasper: init 2024-05-31 10:37:44 -07:00
Audrey Dutcher
ae993bd1e3 freebsd.libdl: init 2024-05-31 10:37:44 -07:00
Audrey Dutcher
a753d385da freebsd.libjail: init 2024-05-31 10:37:44 -07:00
Audrey Dutcher
98587064a0 freebsd.libedit: init 2024-05-31 10:37:44 -07:00
Audrey Dutcher
d792ea2d41 freebsd.{libncurses,libncurses-tinfo}: init
These packages are preferred over libncurses proper for some in-tree
FreeBSD packages.
2024-05-31 10:37:44 -07:00
Audrey Dutcher
95fa436fbe freebsd.libelf: init 2024-05-31 10:37:43 -07:00
Audrey Dutcher
d78f853f7e freebsd.libxo: init 2024-05-31 10:37:43 -07:00