Commit Graph

692644 Commits

Author SHA1 Message Date
K900
001fb496bf Merge remote-tracking branch 'origin/master' into staging-next 2024-10-12 21:08:11 +03:00
Kerstin
35c52ab030
mastodon: 4.2.13 -> 4.3.0 (#337545) 2024-10-12 19:37:08 +02:00
K900
15f8bd80fc
uboot: 2024.07 -> 2024.10 (#347188) 2024-10-12 20:32:58 +03:00
Artturin
fe17be0af8
discord: update all discord packages (#347886) 2024-10-12 20:05:25 +03:00
Gaetan Lepage
bf17174665 python312Packages.catboost: clean derivation 2024-10-12 18:29:17 +02:00
Gaetan Lepage
dbd3d28e55 catboost: mark as broken on x86_64-darwin 2024-10-12 18:29:17 +02:00
Gaetan Lepage
8ff97cbeb1 catboost: 1.2.5 -> 1.2.7
Diff: https://github.com/catboost/catboost/compare/v1.2.5...v1.2.7

Changelog: https://github.com/catboost/catboost/releases/tag/v1.2.7
2024-10-12 18:29:17 +02:00
Gaetan Lepage
5d2c1a9655 catboost: format 2024-10-12 18:29:17 +02:00
Gaetan Lepage
58cd045b17 catboost: move to by-name 2024-10-12 18:29:17 +02:00
Florian Klink
2afe930c60
ipu6: update packages (#347918) 2024-10-12 19:27:43 +03:00
Aleksana
e495f07011
boxbuddy: 2.2.12 -> 2.2.13 (#346165) 2024-10-13 00:12:49 +08:00
Aleksana
a29d2f9a2a
harbor-cli: init at 0.0.1 (#343180) 2024-10-13 00:12:14 +08:00
Philip Taron
d6d9c6125a
Improve PR merge check for CI (#347786) 2024-10-12 09:11:24 -07:00
Aleksana
90c3e1b2aa
alpaca: 2.0.6 -> 2.6.0 (#347673) 2024-10-13 00:09:52 +08:00
Philip Taron
46796b0e04
workflows/codeowners: Cache codeowner validator build (#347789) 2024-10-12 09:09:04 -07:00
Pol Dellaiera
31d7f267cd
libphidget22: init at 0-unstable-2024-04-11 (#337398) 2024-10-12 17:34:22 +02:00
Artturin
98ebbdba36
zenmonitor: inherit meta.homepage from new src (#348009) 2024-10-12 18:28:43 +03:00
Maximilian Bosch
f840d87a6e
Merge: nixos/nginx: expand proxyResolveWhileRunning's description (#347164) 2024-10-12 17:14:43 +02:00
Maximilian Bosch
d3e6c8fc75 linux: implement rustAvailable condition
* It doesn't matter if `rustc` is available, but if rustc can compile to
  the hostPlatform. So use a custom condition instead of `availableOn`.
* Explicitly exclude the combination of GCC and riscv which is known
  to be broken[1].

[1] https://lore.kernel.org/lkml/31885EDD-EF6D-4EF1-94CA-276BA7A340B7@kernel.org/T/

Co-authored-by: Alyssa Ross <hi@alyssa.is>
2024-10-12 17:08:18 +02:00
Maximilian Bosch
bda6c82a81 linux_testing: disable NFS_LOCALIO on aarch64-linux
This breaks the build like this:

      /nix/store/f3k0rdhcd2cx57phx755c2xixgifw5m5-binutils-2.42/bin/ld: Unexpected GOT/PLT entries detected!
      /nix/store/f3k0rdhcd2cx57phx755c2xixgifw5m5-binutils-2.42/bin/ld: Unexpected run-time procedure linkages detected!
      /nix/store/f3k0rdhcd2cx57phx755c2xixgifw5m5-binutils-2.42/bin/ld: fs/nfs/localio.o: in function `nfs_local_iocb_alloc':
      /build/source/build/../fs/nfs/localio.c:290:(.text+0x324): undefined reference to `nfs_to'
      [...]

Reported as https://lore.kernel.org/all/D4OUJRP8YWRM.ATQ7KASTYX5H@mbosch.me/
2024-10-12 17:08:18 +02:00
Maximilian Bosch
3bf9c88c1d linux_testing: enable Rust by default for aarch64-linux
The first assumption[1] we had was that the `aarch64-unknown-none`
target was missing from rustc and that this was the cause for the
regression.

However, it turns out that the relevant code from `rustc` wasn't used
anyways because the Makefile does `--sysroot /dev/null`[2] which prevents
rustc from using its own libcore. So luckily we don't have to patch the
Rust bootstrap to get aarch64-linux back working[3].

In fact, the Rust part seems broken for both 6.10 and 6.11[4], but I
decided to not bother since none of those are longterm versions.

So all that's left here is to enable Rust for aarch64-linux because it
clearly works[5].

[1] https://github.com/NixOS/nixpkgs/pull/315121#issuecomment-2135805876
[2] https://lore.kernel.org/all/20231031201752.1189213-1-mmaurer@google.com/
[3] Of course I only realized this _after_ I spent some time hacking a rustc
    patch together 🙃
[4] This broke with

        error[E0463]: can't find crate for `core`
          |
          = note: the `aarch64-unknown-none` target may not be installed
          = help: consider downloading the target with `rustup target add aarch64-unknown-none`
          = help: consider building the standard library from source with `cargo build -Zbuild-std`

[5] While the build is fine, the VM tests are still panicking, but
    that's also the case for `kernel-generic` because of a 9p
    regression:

        switch_root: can't execute '/nix/store/zv87gw0yxfsslq0mcc35a99k54da9a4z-nixos-system-machine-test/init': Exec format error
        [    1.734997] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000100
        [    1.736002] CPU: 0 UID: 0 PID: 1 Comm: switch_root Not tainted 6.12.0-rc1 #1-NixOS
        [...]

    Reported as https://lore.kernel.org/all/D4LHHUNLG79Y.12PI0X6BEHRHW@mbosch.me/T/#u
2024-10-12 17:08:18 +02:00
Fabian Affolter
e4c2f26e9d
python312Packages.azure-mgmt-billing: 6.0.0 -> 7.0.0 (#341342) 2024-10-12 17:05:31 +02:00
Maximilian Bosch
db56cecb0d
Merge: linux: mark <6.12 with Rust as broken, assert on <6.7 with Rust (#346648) 2024-10-12 17:04:58 +02:00
Fabian Affolter
f53bdd90a5
python312Packages.jalali-core: init at 1.0.0, python312Packages.jdatetime: refactor (#348048) 2024-10-12 17:04:25 +02:00
Fabian Affolter
18d90160c8
python312Packages.import-expression: refactor (#348062) 2024-10-12 17:04:05 +02:00
Fabian Affolter
3c273bdb84
python312Packages.hypothesis-auto: relax dependencies (#348060) 2024-10-12 17:03:55 +02:00
Fabian Affolter
64cbc396c7
python312Packages.tableauserverclient: 0.31 -> 0.33 (#348056) 2024-10-12 17:03:38 +02:00
Fabian Affolter
7f0e5ae7eb
python312Packages.azure-storage-file-share: 12.18.0 -> 12.19.0 (#348051) 2024-10-12 17:03:20 +02:00
Fabian Affolter
b793a85e07
mitmproxy2swagger: refactor (#348050) 2024-10-12 17:03:06 +02:00
Fabian Affolter
24135ca4ac
python312Packages.flow-record: 3.15 -> 3.17, python312Packages.dissect-target: 3.18 -> 3.19, python312Packages.dissect-volume: 3.11 -> 3.12 (#348046) 2024-10-12 17:02:43 +02:00
Tomo
924e8aa124
hop-cli: move throw to top-level/aliases.nix (#348033) 2024-10-12 07:57:18 -07:00
Cosima Neidahl
e58a261efb
lomiri.*: Updates (#341377) 2024-10-12 16:49:25 +02:00
K900
bf39b439c4
nixos/tests/nixos-rebuild-target-host: fix test (#348044) 2024-10-12 17:47:29 +03:00
Adam C. Stephens
23e578dde3
audiobookshelf: 2.13.4 -> 2.14.0 (#347736) 2024-10-12 10:45:12 -04:00
Martin Weinelt
21c73135a9
release-lib: add exception to build olm on hydra (#347899) 2024-10-12 16:34:48 +02:00
rnhmjoj
12b1a23c6e
release-lib: add exception to build olm on hydra
Olm was marked as vulnerable in e4767b47.

The issue, however, is controversial and the practical ability to
exploit its vulnerabilities has not been demostrated: ultimately the
users are invited to decide for themselves.

Given that, hydra should still build and distribute the packages
depending on olm to avoid expensive builds in the event the users
decide it's acceptable to continue using these packages.
2024-10-12 16:26:56 +02:00
Nick Cao
54cce652cb
python312Packages.pylint-django: 2.5.4 -> 2.6.0 (#347653) 2024-10-12 09:02:34 -04:00
Nick Cao
eaaea20be8
python312Packages.aiortm: 0.9.11 -> 0.9.12 (#348041) 2024-10-12 09:00:07 -04:00
Nick Cao
b63914fed3
python312Packages.debugpy: 1.8.6 -> 1.8.7 (#347996) 2024-10-12 08:59:02 -04:00
Nick Cao
c881f3734f
redocly: 1.18.1 -> 1.25.5 (#348007) 2024-10-12 08:58:19 -04:00
Nick Cao
315a57bb2c
vlang: 0.4.4 -> 0.4.8 (#348011) 2024-10-12 08:57:58 -04:00
github-actions[bot]
4433a315bd
Merge master into staging-next 2024-10-12 12:05:08 +00:00
nixpkgs-merge-bot[bot]
c55e1efd2e
metacubexd: 1.150.0 -> 1.151.0 (#346875) 2024-10-12 11:56:01 +00:00
Ramses
aff7476997
niri: refactor & cleanup (#347232) 2024-10-12 13:48:00 +02:00
Jörg Thalheim
ed65c2df9f
gomanagedocker: init at 1.4 (#347300) 2024-10-12 13:24:59 +02:00
Michele Guerini Rocco
3106e48fbc
dhcpcd: bring back enablePrivSep option, nixos/release-notes: remove duplicate note (#347578) 2024-10-12 13:01:52 +02:00
Thomas Gerbet
562995272c fop: apply patch for CVE-2024-28168
https://www.openwall.com/lists/oss-security/2024/10/09/1
2024-10-12 12:54:41 +02:00
Alexandru Nechita
69151ff73d
aerospace: init at 0.14.2-Beta (#344015)
* maintainers: add alexandru0-dev

* aerospace: init at 0.14.2-Beta
2024-10-12 11:38:46 +01:00
Florian Klink
237016d023
gogs: remove (#348053) 2024-10-12 13:13:13 +03:00
Thiago Kenji Okada
1f913e5d30
osu-lazer-bin: fix hash for the second time (#347784) 2024-10-12 10:55:36 +01:00