Commit Graph
693191 Commits
Author SHA1 Message Date
AleksanaandGitHub 90c3e1b2aa alpaca: 2.0.6 -> 2.6.0 (#347673) 2024-10-13 00:09:52 +08:00
Philip TaronandGitHub 46796b0e04 workflows/codeowners: Cache codeowner validator build (#347789) 2024-10-12 09:09:04 -07:00
Fabian Affolter fb0586c613 python312Packages.napari: 0.4.19.post1 -> 0.5.4
Diff: https://github.com/napari/napari/compare/refs/tags/v0.5.4...v0.5.4

Changelog: https://github.com/napari/napari/releases/tag/v0.5.4
2024-10-12 18:04:52 +02:00
Fabian Affolter bd7f178cad python312Packages.napari-npe2: 0.7.2-unstable-2023-10-20 -> 0.7.7 2024-10-12 18:01:42 +02:00
Pol DellaieraandGitHub 31d7f267cd libphidget22: init at 0-unstable-2024-04-11 (#337398) 2024-10-12 17:34:22 +02:00
ArtturinandGitHub 98ebbdba36 zenmonitor: inherit meta.homepage from new src (#348009) 2024-10-12 18:28:43 +03:00
Fabian Affolter 80176cfbe2 python312Packages.magicgui: 0.5.1 -> 0.9.1
Diff: https://github.com/pyapp-kit/magicgui/compare/refs/tags/v0.5.1...v0.9.1

Changelog: https://github.com/pyapp-kit/magicgui/blob/v0.9.1/CHANGELOG.md
2024-10-12 17:25:43 +02:00
Maximilian BoschandGitHub f840d87a6e Merge: nixos/nginx: expand proxyResolveWhileRunning's description (#347164) 2024-10-12 17:14:43 +02:00
Sergei Trofimovich adcc088cb9 faiss: restore passthru attributes
Without the change the `python3Packages.faiss.passthru` are broken:

    $ nix repl -f.
    nix-repl> python3Packages.faiss.passthru
      cudaPackages = «error: attribute 'cudaPackages' missing»;
      cudaSupport = «error: attribute 'cudaSupport' missing»;
      pythonSupport = «error: attribute 'pythonSupport' missing»;
2024-10-12 16:09:02 +01:00
Maximilian BoschandAlyssa Ross 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 BoschandAlyssa Ross 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 BoschandAlyssa Ross 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 AffolterandGitHub e4c2f26e9d python312Packages.azure-mgmt-billing: 6.0.0 -> 7.0.0 (#341342) 2024-10-12 17:05:31 +02:00
Maximilian BoschandGitHub 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 AffolterandGitHub f53bdd90a5 python312Packages.jalali-core: init at 1.0.0, python312Packages.jdatetime: refactor (#348048) 2024-10-12 17:04:25 +02:00
Fabian AffolterandGitHub 18d90160c8 python312Packages.import-expression: refactor (#348062) 2024-10-12 17:04:05 +02:00
Fabian AffolterandGitHub 3c273bdb84 python312Packages.hypothesis-auto: relax dependencies (#348060) 2024-10-12 17:03:55 +02:00
Fabian AffolterandGitHub 64cbc396c7 python312Packages.tableauserverclient: 0.31 -> 0.33 (#348056) 2024-10-12 17:03:38 +02:00
Fabian AffolterandGitHub 7f0e5ae7eb python312Packages.azure-storage-file-share: 12.18.0 -> 12.19.0 (#348051) 2024-10-12 17:03:20 +02:00
Fabian AffolterandGitHub b793a85e07 mitmproxy2swagger: refactor (#348050) 2024-10-12 17:03:06 +02:00
Fabian AffolterandGitHub 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
TomoandGitHub 924e8aa124 hop-cli: move throw to top-level/aliases.nix (#348033) 2024-10-12 07:57:18 -07:00
Cosima NeidahlandGitHub e58a261efb lomiri.*: Updates (#341377) 2024-10-12 16:49:25 +02:00
K900andGitHub bf39b439c4 nixos/tests/nixos-rebuild-target-host: fix test (#348044) 2024-10-12 17:47:29 +03:00
Adam C. StephensandGitHub 23e578dde3 audiobookshelf: 2.13.4 -> 2.14.0 (#347736) 2024-10-12 10:45:12 -04:00
Martin WeineltandGitHub 21c73135a9 release-lib: add exception to build olm on hydra (#347899) 2024-10-12 16:34:48 +02:00
romner-set 54c14e4e85 vpp: init at 24.06 2024-10-12 16:30:19 +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
Alyssa Ross e4e66931b0 obs-studio: fix build 2024-10-12 15:42:16 +02:00
Fabian Affolter b7a6cb641c python312Packages.mypy-boto3-route53resolver: 1.35.0 -> 1.35.38 2024-10-12 15:30:12 +02:00
Fabian Affolter 54dae1f888 python312Packages.mypy-boto3-robomaker: 1.35.0 -> 1.35.39 2024-10-12 15:30:09 +02:00
Fabian Affolter ac7194ea01 python312Packages.mypy-boto3-outposts: 1.35.0 -> 1.35.38 2024-10-12 15:29:59 +02:00
Fabian Affolter e9cea4262d python312Packages.mypy-boto3-iotfleetwise: 1.35.0 -> 1.35.38 2024-10-12 15:29:35 +02:00
Fabian Affolter 7fc568cd2f python312Packages.mypy-boto3-guardduty: 1.35.22 -> 1.35.39 2024-10-12 15:29:28 +02:00
Fabian Affolter 941844b11f python312Packages.mypy-boto3-emr: 1.35.18 -> 1.35.39 2024-10-12 15:29:20 +02:00
Fabian Affolter 5e3640c9b2 python312Packages.mypy-boto3-elbv2: 1.35.18 -> 1.35.39 2024-10-12 15:29:19 +02:00
Fabian Affolter 56f3452796 python312Packages.mypy-boto3-elastic-inference: 1.35.0 -> 1.35.38 2024-10-12 15:29:17 +02:00
Fabian Affolter 04fd0af9b1 python312Packages.mypy-boto3-ecs: 1.35.21 -> 1.35.38 2024-10-12 15:29:15 +02:00
Fabian Affolter f756416dd3 python312Packages.mypy-boto3-ec2: 1.35.34 -> 1.35.38 2024-10-12 15:29:12 +02:00
Fabian Affolter 66320c08ea python312Packages.mypy-boto3-dms: 1.35.0 -> 1.35.38 2024-10-12 15:29:09 +02:00
Fabian Affolter cd7fa235d5 python312Packages.mypy-boto3-codepipeline: 1.35.33 -> 1.35.37 2024-10-12 15:28:58 +02:00
Fabian Affolter 7721bb73d1 python312Packages.mypy-boto3-appflow: 1.35.0 -> 1.35.39 2024-10-12 15:28:43 +02:00
Fabian Affolter 933a976af1 python312Packages.mypy-boto3-acm-pca: 1.35.0 -> 1.35.38 2024-10-12 15:28:39 +02:00
Fabian Affolter 4d18808ed8 python311Packages.pyannotate: refactor
- disable failing tests
2024-10-12 15:06:39 +02:00
Nick CaoandGitHub 54cce652cb python312Packages.pylint-django: 2.5.4 -> 2.6.0 (#347653) 2024-10-12 09:02:34 -04:00
Bobby Rong a6fcbb4454 pantheon.switchboard-plug-datetime: 8.0.0 -> 8.1.0
https://github.com/elementary/switchboard-plug-datetime/compare/8.0.0...8.1.0
2024-10-12 21:02:28 +08:00
Nick CaoandGitHub eaaea20be8 python312Packages.aiortm: 0.9.11 -> 0.9.12 (#348041) 2024-10-12 09:00:07 -04:00
Nick CaoandGitHub b63914fed3 python312Packages.debugpy: 1.8.6 -> 1.8.7 (#347996) 2024-10-12 08:59:02 -04:00
Nick CaoandGitHub c881f3734f redocly: 1.18.1 -> 1.25.5 (#348007) 2024-10-12 08:58:19 -04:00
Nick CaoandGitHub 315a57bb2c vlang: 0.4.4 -> 0.4.8 (#348011) 2024-10-12 08:57:58 -04:00