Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracking issue for future-incompatibility lint elided_lifetimes_in_associated_constant #115010

Open
2 of 3 tasks
compiler-errors opened this issue Aug 19, 2023 · 11 comments
Open
2 of 3 tasks
Labels
A-associated-items Area: Associated items (types, constants & functions) A-lifetimes Area: Lifetimes / regions A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-future-incompatibility Category: Future-incompatibility lints C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-types Relevant to the types team, which will review and decide on the PR/issue.
Milestone

Comments

@compiler-errors
Copy link
Member

compiler-errors commented Aug 19, 2023

This is a tracking issue for the elided_lifetimes_in_associated_constant future-incompatibility lint.

The goal of this page is describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change should not be made. For more information on the policy around future-compatibility warnings, see our breaking change policy guidelines.

What

The elided_lifetimes_in_associated_constant lint detects elided lifetimes that became erroneously allowed in associated constants after #97313.

struct Foo;
impl Foo {
    const STR: &str = "hello, world";
}

They current desugar to fresh early-bound lifetimes on the parent impl, like:

struct Foo;
impl<'a> Foo {
    const STR: &'a str = "hello, world";
}

This is in contrast to the way that elided lifetimes are treated in item-level consts (where elided lifetimes are resolved to 'static), and this behavior was also never formally decided -- static-in-const lifetime rules do not apply to associated consts (rust-lang/rfcs#1623 (comment), #38831 (comment)).

Why

It was never decided what to do with elided lifetimes in consts, and it is not clear that the current behavior is optimal here. This is to stop the leaking by making sure existing elided lifetimes are fixed back to using 'static as they were required to before version 1.64, and that new usages of elided lifetimes in consts are not introduced.

How to fix

Replace the elided lifetimes with 'static (or manually introduce or reference another lifetime):

struct Foo;
impl Foo {
    const STR: &'static str = "hello, world";
}

Tracking

@compiler-errors compiler-errors added the C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC label Aug 19, 2023
@jonathanstrong
Copy link

I'm old enough to remember when clippy used to nag me to change &'static str to &str for consts. Ugh.

@tgross35
Copy link
Contributor

Is it possible to loosen the implicit lifetime to 'static lifetime for literals at least? This change is kind of churny and doesn't really seem to align with expected behavior.

@compiler-errors
Copy link
Member Author

compiler-errors commented Aug 24, 2023

@tgross35: that's behavior that @rust-lang/lang needs to stabilize separately. I'll nominate this issue to see if opinions have changed since #38831, but this lint is specifically aimed at making sure people are not relying on behavior that was never formally stabilized.

Question for T-lang: What should we do here?

  • A. Continue with this lint, accepting churn, with the possibility of relaxing this (i.e. resolving '_ to 'static in associated consts) in the future
  • B. Fast-track stabilization of this extension to static-lifetimes-in-const (RFC 1623), and revert this lint before it makes its way to stable (1.74, so we have approx. 12 weeks to decide as of 2023/08/24)
  • C. Some other compromise in the middle, e.g. stabilizing the static-lifetime elision rule when some other condition is true (i.e. the self type has no other lifetimes)
  • D. Something else :^)

@compiler-errors compiler-errors added the I-lang-nominated Nominated for discussion during a lang team meeting. label Aug 24, 2023
gbj pushed a commit to leptos-rs/leptos that referenced this issue Aug 24, 2023
On the latest lifetime we're getting the following warning in the server
macro:
 warning: `&` without an explicit lifetime name cannot be used here
   --> src/login.rs:19:1
    |
 19 | #[server(Login, "/api")]
    | ^
    |
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #115010 <rust-lang/rust#115010>
    = note: this warning originates in the attribute macro `server` (in Nightly builds, run with -Z macro-backtrace for more info)
@repi
Copy link

repi commented Aug 29, 2023

The clippy warn-by-default lint redundant_static_lifetimes conflicts with this warning with latest nightly, so users would have to disable one or the other which is unfortunate.

@compiler-errors
Copy link
Member Author

compiler-errors commented Aug 29, 2023

@repi: The redundant_static_lifetimes lint does not trigger on associated consts:

if let ItemKind::Const(box ConstItem { ty: ref var_type, .. }) = item.kind {
Self::visit_type(var_type, cx, "constants have by default a `'static` lifetime");
// Don't check associated consts because `'static` cannot be elided on those (issue
// #2438)
}
(and should have been fixed since rust-lang/rust-clippy#2443)

https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=a3f5fbfff746ad971f4ca458633990e6

Can you share code where you encountered a conflict between this future-compat warning and the clippy lint?

@repi
Copy link

repi commented Aug 29, 2023

dug a bit deeper and I was wrong, this clippy lint indeed doesn't trigger on associated consts. sorry.

was able to resolve all of our lint warnings on this without clippy::redundant_static_lifetimes triggering.

@compiler-errors
Copy link
Member Author

Lang team consensus is that we should go with (A.) above:

A. Continue with this lint, accepting churn, with the possibility of relaxing this (i.e. resolving '_ to 'static in associated consts) in the future

Since this was inadvertently stabilized and a separate RFC would need to be authored if it's desired to make elision work in associated consts.

See notes here: https://rust-lang.zulipchat.com/#narrow/stream/213817-t-lang/topic/Triage.20meeting.202023-08-29/near/388257641

@compiler-errors compiler-errors removed the I-lang-nominated Nominated for discussion during a lang team meeting. label Aug 31, 2023
@QuineDot
Copy link

QuineDot commented Sep 1, 2023

Heads up: This lint as currently written accepts code that is not accepted in Rust 1.72 (nor 1.63).

From 1.64 to current stable, anonymous lifetimes were allowed, but they weren't specifically 'static; instead, each one was independent. The independent-ness caused things like nested elided lifetimes and ambiguous trait bounds for trait objects to fail.

Under the change which accompanied this lint, elided lifetimes are no longer independent, they are specifically 'static. This allows more things to compile.

Example (Rust 1.63 fails; Rust 1.72 fails; nightly succeeds):

struct S;
impl S {
    const C: &&str = &"";
}

Perhaps this will be considered fine since the lint is supposedly going to be deny, but I thought I should mention it. If the lint doesn't go the way you anticipate, you may be unwittingly opting into a specific behavior ('static).

The change also means that contravariant cases that worked from 1.64-1.72 fail on nightly:

struct Contra<'a>(PhantomData<fn(&'a str)>);

struct S;
impl S {
    const C: Contra<'_> = Contra(PhantomData);
}

fn f<'a>() {
    let _: Contra<'a> = S::C;
}

But probably that's not ecosystem-breaking like the covariant case is.


More examples that probably add nothing

The last three examples in this section (before "impl Headers") don't compile in Rust 1.63 (prior to #97313 landing) due to the use of '_. The first example compiles from 1.64 to current stable, but the second two examples did not. All three compile on nightly (with this lint).


This example fails on 1.63 due to the '_ in dyn Single<'_>. It compiles on 1.72.

use core::marker::PhantomData;
trait Single<'a>: 'a + Send + Sync {}
struct L<'l, 'm>(&'l str, &'m str);
impl<'a, 'b> L<'a, 'b> {
    const ECS: PhantomData<Box<dyn Single<'_>>> = PhantomData;
    const SCS: PhantomData<Box<dyn Single<'static>>> = PhantomData;

    const S_ECS: PhantomData<Box<dyn Single<'static> + 'static>> = Self::ECS;
    const S_SCS: PhantomData<Box<dyn Single<'static> + 'static>> = Self::SCS;
}

This example fails on 1.63 due to the '_ in dyn Double<'a, '_>. It fails on 1.72 because it considers the elided trait object lifetime ambiguous in the face of two independent lifetimes.

use core::marker::PhantomData;
trait Double<'a, 'b>: 'a + 'b + Send + Sync {}
struct L<'l, 'm>(&'l str, &'m str);
impl<'a, 'b> L<'a, 'b> {
    const EBCD: PhantomData<Box<dyn Double<'a, '_>>> = PhantomData;
}

This example fails on 1.63 due to the use of '_ and eliding & lifetimes. It fails on 1.72 because some of the anonymous lifetimes aren't considered to be implicitly longer than the reference lifetime. (N.b. the spans are also broken in the error. Comment out the ECS case to see better spans on the RECS case.)

use core::marker::PhantomData;
trait Single<'a>: 'a + Send + Sync {}
struct R<'l, 'm, 'r>(&'l str, &'m str, &'r ());
impl<'a, 'b, 'r> R<'a, 'b, 'r> where 'a: 'r, 'b: 'r {
    const ECS: PhantomData<&dyn Single<'_>> = PhantomData;
    const RECS: PhantomData<&'r dyn Single<'_>> = PhantomData;
}

@compiler-errors
Copy link
Member Author

@QuineDot: thanks for the comment.

Yeah, I'm aware of this, and chose to lower to 'static to avoid additional errors like #114706, but yeah, perhaps we shouldn't allow this. I'll modify the warning code to continue to lower to fresh lifetimes to preserve 1.64-1.73 behavior behind the warning.

fmease added a commit to fmease/rust that referenced this issue Sep 2, 2023
…rough, r=cjgillot

Fall through when resolving elided assoc const lifetimes

`@QuineDot` makes a good point in rust-lang#115010 (comment) that we probably should not accept *more* code due to rust-lang#115011 even though that code will eventually become a forbid-warning in a few versions (rust-lang#115010 (comment)).

Fall through when walking thru the `AnonymousWarnToStatic` (renamed to `AnonymousWarn`) rib so that we can resolve as a fresh lifetime like we did before.
fmease added a commit to fmease/rust that referenced this issue Sep 2, 2023
…rough, r=cjgillot

Fall through when resolving elided assoc const lifetimes

``@QuineDot`` makes a good point in rust-lang#115010 (comment) that we probably should not accept *more* code due to rust-lang#115011 even though that code will eventually become a forbid-warning in a few versions (rust-lang#115010 (comment)).

Fall through when walking thru the `AnonymousWarnToStatic` (renamed to `AnonymousWarn`) rib so that we can resolve as a fresh lifetime like we did before.
bors added a commit to rust-lang-ci/rust that referenced this issue Sep 2, 2023
…ugh, r=cjgillot

Fall through when resolving elided assoc const lifetimes

`@QuineDot` makes a good point in rust-lang#115010 (comment) that we probably should not accept *more* code due to rust-lang#115011 even though that code will eventually become a forbid-warning in a few versions (rust-lang#115010 (comment)).

Fall through when walking thru the `AnonymousWarnToStatic` (renamed to `AnonymousWarn`) rib so that we can resolve as a fresh lifetime like we did before.
github-merge-queue bot pushed a commit to bevyengine/bevy that referenced this issue Sep 2, 2023
# Objective

Fix some nightly warnings found by running

`cargo +nightly clippy`

## Solution

Fix the following warnings:
- [x]
[elided_lifetimes_in_associated_constant](rust-lang/rust#115010)
2219861
- [x]
[unwrap_or_default](https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_or_default)
32e21c7
- [x]
[needless_pass_by_ref_mut](https://rust-lang.github.io/rust-clippy/master/index.html#/needless_pass_by_ref_mut)
c85d6d4

There is no breaking change, some internal `bevy_ecs` code no longer
uses a few mutable references but I don't think it should cause any
regression or be performance sensitive, but there might be some ECS
magic I'm unaware of that could break because of those changes
RalfJung pushed a commit to RalfJung/miri that referenced this issue Sep 3, 2023
…gillot

Fall through when resolving elided assoc const lifetimes

`@QuineDot` makes a good point in rust-lang/rust#115010 (comment) that we probably should not accept *more* code due to #115011 even though that code will eventually become a forbid-warning in a few versions (rust-lang/rust#115010 (comment)).

Fall through when walking thru the `AnonymousWarnToStatic` (renamed to `AnonymousWarn`) rib so that we can resolve as a fresh lifetime like we did before.
waywardmonkeys added a commit to waywardmonkeys/icu4x that referenced this issue Sep 4, 2023
This is a new warning in an upcoming version of Rust:

```
warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
note: for more information, see issue #115010 <rust-lang/rust#115010>
```
@holly-hacker
Copy link
Contributor

Apologies if I miss something obvious here, I've only been using Rust for a few years and haven't touched its internals, but why can this...

struct Foo;
impl Foo {
    const STR: &str = "hello, world";
}

... not be desugared into this?

struct Foo;
impl Foo {
    const STR: &'static str = "hello, world";
}

Is this some limitation of the compiler, or is this a backwards-incompatible change? If it's backwards-incompatible, isn't it better to change this behavior in a Rust edition?

I find it strange that const fields can have non-'static lifetimes in the first place, so I assume (nearly) nobody is depending on the fact that their associated consts have a lifetime that may be shorter than 'static.

@tgross35
Copy link
Contributor

tgross35 commented Sep 5, 2023

Apologies if I miss something obvious here, I've only been using Rust for a few years and haven't touched its internals, but why can this...

[...]

... not be desugared into this?

[...]

@holly-hacker the problem is that this is loosening bounds from the current behavior, which needs to go through the review process since it is part of a bigger picture. The notes where this was discussed are here: https://hackmd.io/4br69DHGRy2EIm-JY5dTgw#%E2%80%9CTracking-Issue-for-ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT-future-compat-lint%E2%80%9D-rust115010, I think that the RFC linked there illustrate some of the potential issues.

It seems like generally everyone is in agreement that the current behavior is not expected, it's just not yet clear how to make expected and actual behavior align. It might be possible to special-case something for the common cases - but those discussions and decisions will take time (I just opened some discussion on Zulip about this)

Is this some limitation of the compiler, or is this a backwards-incompatible change? If it's backwards-incompatible, isn't it better to change this behavior in a Rust edition?

Lints can be added outside of edition boundaries since they can always be disabled (editions are usually things that aren't configurable)

Hywan added a commit to Hywan/matrix-rust-sdk that referenced this issue Sep 6, 2023
This was previously accepted by the compiler but is being phased out;
it will become a hard error in a future release! See https://github.com/
rust-lang/rust/issues/115010.
takaswie added a commit to alsa-project/snd-firewire-ctl-services that referenced this issue Mar 2, 2024
This commit suppresses the following warning reported by rustc version 1.75.

warning: `&` without an explicit lifetime name cannot be used here
    ...
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #115010 <rust-lang/rust#115010>
    = note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
Signed-off-by: Takashi Sakamoto <[email protected]>
takaswie added a commit to alsa-project/snd-firewire-ctl-services that referenced this issue Mar 2, 2024
This commit suppresses the following warning reported by rustc version 1.75.

warning: `&` without an explicit lifetime name cannot be used here
    ...
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #115010 <rust-lang/rust#115010>
    = note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
Signed-off-by: Takashi Sakamoto <[email protected]>
takaswie added a commit to alsa-project/snd-firewire-ctl-services that referenced this issue Mar 2, 2024
This commit suppresses the following warning reported by rustc version 1.75.

warning: `&` without an explicit lifetime name cannot be used here
    ...
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #115010 <rust-lang/rust#115010>
    = note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
Signed-off-by: Takashi Sakamoto <[email protected]>
takaswie added a commit to alsa-project/snd-firewire-ctl-services that referenced this issue Mar 2, 2024
This commit suppresses the following warning reported by rustc version 1.75.

warning: `&` without an explicit lifetime name cannot be used here
    ...
    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
    = note: for more information, see issue #115010 <rust-lang/rust#115010>
    = note: `#[warn(elided_lifetimes_in_associated_constant)]` on by default
help: use the `'static` lifetime
Signed-off-by: Takashi Sakamoto <[email protected]>
maxdeviant added a commit to zed-industries/zed that referenced this issue Mar 2, 2024
This PR removes unneeded `'static` lifetimes on `&str`s stored in
`const` declarations.

This addresses some Clippy lints about
[`redundant_static_lifetimes`](https://rust-lang.github.io/rust-clippy/master/index.html#/redundant_static_lifetimes).

In item-level `const` declarations we can rely on lifetime elision and
use the default `'static` lifetime.

Note that associated constants still require an explicit `'static`
lifetime, as explained in
rust-lang/rust#115010.

Release Notes:

- N/A
ProxBot pushed a commit to proxmox/pve-installer that referenced this issue Jul 4, 2024
This produces as warning that will become a hard-error in the future.
See also: rust-lang/rust#115010

Signed-off-by: Thomas Lamprecht <[email protected]>
ArcticLampyrid added a commit to ArcticLampyrid/print_raster.rs that referenced this issue Aug 13, 2024
@fmease fmease changed the title Tracking Issue for ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT future-compat lint Tracking issue for future-incompatibility lint elided_lifetimes_in_associated_constant Sep 17, 2024
@fmease fmease added A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. A-associated-items Area: Associated items (types, constants & functions) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-future-incompatibility Category: Future-incompatibility lints T-types Relevant to the types team, which will review and decide on the PR/issue. A-lifetimes Area: Lifetimes / regions labels Sep 17, 2024
itepastra added a commit to itepastra/nixpkgs that referenced this issue Nov 5, 2024
github-actions bot pushed a commit to Mic92/nixpkgs that referenced this issue Nov 10, 2024
github-actions bot added a commit to AkechiShiro/arewehackersyet that referenced this issue Nov 30, 2024
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/[email protected]](https://github.com/NixOS/nixpkgs/compare/f71e09a7cedaa5acbfdba8a315248c90ef4f1fd1...4703b8d2c708e13a8cab03d865f90973536dcdf5)

* [`53377482`](https://github.com/NixOS/nixpkgs/commit/53377482004e6041af2d4e215fda0a86741b6b69) bpfmon: 2.52 -> 2.53
* [`688e0e14`](https://github.com/NixOS/nixpkgs/commit/688e0e14c4cbb2574561aa156d16a1f2fc9c35ad) woodpecker-server: 2.7.1 -> 2.7.2
* [`ba0315ba`](https://github.com/NixOS/nixpkgs/commit/ba0315ba61c85652180772a1e2ccc44dcff3ab3e) evtx: 0.8.3 -> 0.8.4
* [`d298e7fd`](https://github.com/NixOS/nixpkgs/commit/d298e7fde13a113c1ca6ac7c6f71ecc222da191d) dua: 2.29.2 -> 2.29.3
* [`81090db6`](https://github.com/NixOS/nixpkgs/commit/81090db682c5cad265dfe958c684defc6909ff34) ytermusic: fix build by updating dependencies
* [`91abaf6c`](https://github.com/NixOS/nixpkgs/commit/91abaf6cf27ce3c083d63f7d0b91f83301075e9d) python3.pkgs.vega: remove unnecessary patch that breaks the build
* [`de88955b`](https://github.com/NixOS/nixpkgs/commit/de88955be618163fab1e4151e91df3d0eb3610f0) sqruff: 0.17.0 → 0.20.2
* [`1ab2fa31`](https://github.com/NixOS/nixpkgs/commit/1ab2fa31a387fa2127588bd6e4c470909cd0981c) xurls: 2.5.0 -> 2.5.0-unstable-2024-11-03
* [`d080f9fc`](https://github.com/NixOS/nixpkgs/commit/d080f9fc66814a4169d569a65975cdb712b96f4b) postgrest: add myself as maintainer
* [`47a22a42`](https://github.com/NixOS/nixpkgs/commit/47a22a4271aa511f65fede042f03343df1f8df11) postgrest: remove mentioned issue for jailbreaking
* [`2679bd2f`](https://github.com/NixOS/nixpkgs/commit/2679bd2fd6f339f2d6a4b1fbe7e91c3756c85549) postgrest: 12.0.2 -> 12.0.3
* [`c47859a9`](https://github.com/NixOS/nixpkgs/commit/c47859a9686fc93236699b3bce05814c787fb3be) postgrest: fix build on aarch64-darwin
* [`3e0a1fb7`](https://github.com/NixOS/nixpkgs/commit/3e0a1fb7cc6a3a7fdb607e25d7fd4dc3e2a2ba96) gn: nixfmt
* [`bfca4e1e`](https://github.com/NixOS/nixpkgs/commit/bfca4e1e736757cccb4110d7d04d88c6ba770ae6) gn1924: drop
* [`19fd3f03`](https://github.com/NixOS/nixpkgs/commit/19fd3f030da2876f86ffbd3d99f0b24b4a81ee14) waf: 2.1.2 -> 2.1.3
* [`3f479feb`](https://github.com/NixOS/nixpkgs/commit/3f479febfe8b1e27456d6154a321c3a0f979ae82) kamp: 0.2.1 -> 0.2.2
* [`332e4e07`](https://github.com/NixOS/nixpkgs/commit/332e4e07a332119c679647d1c14a17b728cb3768) python312Packages.hap-python: 4.9.1 -> 4.9.2
* [`1e49cbef`](https://github.com/NixOS/nixpkgs/commit/1e49cbefaca3da759c56fce4f0e9f0d460bd5e93) jazz2: 2.9.0 -> 2.9.1
* [`e674bbe9`](https://github.com/NixOS/nixpkgs/commit/e674bbe9fe18a82b3e3064f6dbad93f81f3f3f57) ppsspp: 1.17.1 -> 1.18
* [`77057c0c`](https://github.com/NixOS/nixpkgs/commit/77057c0c61db62e7c6177b0e78c0952b32472676) timoni: 0.22.0 -> 0.22.1
* [`01aab17a`](https://github.com/NixOS/nixpkgs/commit/01aab17a2eff47862eeb56e10ef0723d66bd7861) nixos/tests/prometheus-exporters/varnish: make state directory explicit
* [`00be4cf4`](https://github.com/NixOS/nixpkgs/commit/00be4cf4e82c6aa00ff5e2c73754ebed1823e4e3) Add override for typst-preview-nvim
* [`047916da`](https://github.com/NixOS/nixpkgs/commit/047916da43cb552008bab1600e230646bf8ec286) frozen-bubble: move to by-name
* [`d72fb11b`](https://github.com/NixOS/nixpkgs/commit/d72fb11bd20ce17976b365ba8aa75d8238cb5539) frozen-bubble: nixfmt
* [`9eea3cbd`](https://github.com/NixOS/nixpkgs/commit/9eea3cbd0f791fa7f67ffe14c13298fd52b0483f) frozen-bubble: fix build
* [`ad751c9e`](https://github.com/NixOS/nixpkgs/commit/ad751c9e58484910041fbe2b98a133f8bbd6d1e1) pkgs/stdenv/linux: update armv7l-unknown-linux-gnueabihf bootstrap-files
* [`c2034a8f`](https://github.com/NixOS/nixpkgs/commit/c2034a8f620803cd31a60cb7976e1f8b183a54ab) Remove mcaju as maintainer
* [`a51f3224`](https://github.com/NixOS/nixpkgs/commit/a51f3224762eb27ac7ab3b39a17211e83c4ece67) ppsspp-sdl: 1.17.1 -> 1.18
* [`3c21a5c9`](https://github.com/NixOS/nixpkgs/commit/3c21a5c9d6c87860a9abeb9f3ef753496de9c809) lib/systems: elaborate properly with non-matching system / config / parsed args
* [`85f4044f`](https://github.com/NixOS/nixpkgs/commit/85f4044fc30fc5d12c074a3662c48cda907b225f) Update pkgs/build-support/setup-hooks/desktop-to-darwin-bundle.sh
* [`4682fff1`](https://github.com/NixOS/nixpkgs/commit/4682fff1edc2e638ac4405130a059fd64aaac0ba) rage: 0.10.0 -> 0.11.0
* [`42a45d74`](https://github.com/NixOS/nixpkgs/commit/42a45d74bd197737559dd2a1452c6098ae182ade) tower-pixel-dungeon: init at 0.3.2
* [`acb1661f`](https://github.com/NixOS/nixpkgs/commit/acb1661f74d53d44585e36ebcc1a32fe73384e96) aggregate6: init at 1.0.12
* [`9ec16015`](https://github.com/NixOS/nixpkgs/commit/9ec16015fe94550ed45e09b80afa058f4e2324d6) go-jet: 2.11.1 -> 2.12.0
* [`89ab9552`](https://github.com/NixOS/nixpkgs/commit/89ab9552e246e65861c61079bc1d9e1f45b468c3) arouteserver: init at 1.23.1
* [`03401f02`](https://github.com/NixOS/nixpkgs/commit/03401f0200310afa450cd26efebe5891049972b6) git-lfs: fix cross compilation
* [`03524a85`](https://github.com/NixOS/nixpkgs/commit/03524a85944df4da965439214cdde665cdf0ac0c) gssdp: fix cross compilation
* [`31d5e148`](https://github.com/NixOS/nixpkgs/commit/31d5e148149e1fc4e6047cca5dc8d4f46c9cd6c2) lunar-client: 3.2.24 -> 3.2.26
* [`7f1c12b1`](https://github.com/NixOS/nixpkgs/commit/7f1c12b1170f974cc2fefd5ed45d588a3a090972) python312Packages.pysigma-backend-opensearch: 1.0.2 -> 1.0.3
* [`5a2d2310`](https://github.com/NixOS/nixpkgs/commit/5a2d23108f4c724623b16c27f78bdde63b17d73b) connectome-workbench: 2.0.0 -> 2.0.1; unbreak
* [`6ff04391`](https://github.com/NixOS/nixpkgs/commit/6ff04391d6c0abbdf90914f24278d844a89a7c00) python312Packages.mmengine: fix test
* [`a99d2b7d`](https://github.com/NixOS/nixpkgs/commit/a99d2b7d4fe9c5f12bd7d21f61aaa4f228bbc894) python312Packages.paste: use `pyproject = true`
* [`f9954062`](https://github.com/NixOS/nixpkgs/commit/f9954062369e7426938a1bcb97ddaa354bbe47f1) python312Packages.pastedeploy: 3.0.1 -> 3.1
* [`75929c2e`](https://github.com/NixOS/nixpkgs/commit/75929c2eef3b490e76f6db0305d8a5a793ba60d0) usql: 0.19.3 -> 0.19.12
* [`3cddf760`](https://github.com/NixOS/nixpkgs/commit/3cddf760f06f02b04276bcdecdc762196d97dcac) python312Packages.typed-settings: fixed failing build
* [`2b99d5f3`](https://github.com/NixOS/nixpkgs/commit/2b99d5f3c4ceae9e93c1cf1ab5ef83e91b624e03) python312Packages.pysigma-backend-elasticsearch: 1.1.2 -> 1.1.3
* [`ebbcbca1`](https://github.com/NixOS/nixpkgs/commit/ebbcbca198bc921e80e8eac4b00fbe7da3ac1255) python312Packages.bimmer-connected: 0.16.3 -> 0.16.4
* [`e4910acc`](https://github.com/NixOS/nixpkgs/commit/e4910acc8917f04aacbc0beacf549686df822966) orchis-theme: 2024-09-02 -> 2024-11-03
* [`5d9936f6`](https://github.com/NixOS/nixpkgs/commit/5d9936f637728569c6752319d57a268442737fc6) megapixels: search for postprocessing programs in NixOS specific global location
* [`07c85201`](https://github.com/NixOS/nixpkgs/commit/07c852011675db2cfb4a0a3591fca746ef4d3f1a) postprocessd: init at 0.3.0
* [`ec8d97fb`](https://github.com/NixOS/nixpkgs/commit/ec8d97fb5051257d1bf3cda4a306049374d62149) vscode-extensions.visualjj.visualjj: 0.12.2 -> 0.12.3
* [`0e5a4293`](https://github.com/NixOS/nixpkgs/commit/0e5a42933fc483faa959994b38abfe02edb996cd) komikku: 1.58.0 -> 1.60.0
* [`2223312e`](https://github.com/NixOS/nixpkgs/commit/2223312e3d895c6350351665e0bf83f001f06613) nixos/networkd: allow byte values to be integers
* [`371e61a6`](https://github.com/NixOS/nixpkgs/commit/371e61a6dd6657b9c83ea5e132b10338415d28ef) muffet: 2.10.3 -> 2.10.6
* [`25a5b7ce`](https://github.com/NixOS/nixpkgs/commit/25a5b7ce01e554be0538b508c5219a84fa472369) python312Packages.gremlinpython: 3.7.1 -> 3.7.3
* [`226f9c8f`](https://github.com/NixOS/nixpkgs/commit/226f9c8f73ba78312519a2070cd0e11b8c47fb59) git-dummy: init at 0.1.2
* [`1a6c8d50`](https://github.com/NixOS/nixpkgs/commit/1a6c8d507c278e8103a4984532b56fe666e30016) git-sim: init at 0.3.5
* [`723522cc`](https://github.com/NixOS/nixpkgs/commit/723522cc4aab430c64d9125ce44c71470a6376fa) labwc: remove AndersonTorres
* [`ea6d3fa2`](https://github.com/NixOS/nixpkgs/commit/ea6d3fa2f5972966d65c87f3e6e59e3bf4b6a162) genericUpdater: silence grep in version_is_ignored
* [`4083af87`](https://github.com/NixOS/nixpkgs/commit/4083af87bbb8f48b88bad0539a6a5f2914f2a786) simplex-chat-desktop: 6.1.0 -> 6.1.1
* [`5010ef5e`](https://github.com/NixOS/nixpkgs/commit/5010ef5ebfd897c83c8234a774c468d6b1870762) genericUpdater: pass patchlevel-unstable correctly to shell script
* [`e6f9f9d5`](https://github.com/NixOS/nixpkgs/commit/e6f9f9d541f4019abf8e984559d8a38807912b00) raycast: add jakecleary ([email protected]) as maintainer
* [`92ffc052`](https://github.com/NixOS/nixpkgs/commit/92ffc052dab92c933534dc0f03b7f29d9224bbc6) raycast: fix path to pkg in passthru.updateScript
* [`6d8bf22e`](https://github.com/NixOS/nixpkgs/commit/6d8bf22ea0b114d3d174242dd27c9dc91d30d5ad) raycast: 1.84.8 → 1.84.10
* [`27810f10`](https://github.com/NixOS/nixpkgs/commit/27810f1018550870092a55707bf4e31598cd4d85) Revert "python3Packages.materialx: 1.38.10 -> 1.39.1"
* [`775052b0`](https://github.com/NixOS/nixpkgs/commit/775052b00985257dbfc82af26156350be0a07b59) chafa: 1.14.4 -> 1.14.5
* [`412eaa64`](https://github.com/NixOS/nixpkgs/commit/412eaa64975ec65ae18855df09230e8fa84d1d19) mihomo: 1.18.9 -> 1.18.10
* [`68ceef5b`](https://github.com/NixOS/nixpkgs/commit/68ceef5b6232a831963a43a2ac730ed969c7c230) python312Packages.pyzx: unbreak by relaxing `lark` dep version
* [`733c8cdd`](https://github.com/NixOS/nixpkgs/commit/733c8cddba2788bb6a2de9fd897bd66f9bae454d) php{81,82,83,84}Extensions.snmp: remove Darwin conditional
* [`ffa28b93`](https://github.com/NixOS/nixpkgs/commit/ffa28b938f682d0007e44a8d149d2d5bf95ba36c) python3Packages.easy-thumbnails: 2.8.5 -> 2.10.0
* [`3bea63b2`](https://github.com/NixOS/nixpkgs/commit/3bea63b232b4715a1e9bc1077414fe46b76e3308) python312Packages.openusd: apply upstream patch to fix build
* [`a886b69b`](https://github.com/NixOS/nixpkgs/commit/a886b69be8c321a8d98d1e966d2d9d836d109056) python312Packages.openusd: conform to PEP 517
* [`42f60c5c`](https://github.com/NixOS/nixpkgs/commit/42f60c5c2a69f10b5be379ca1dd4b847020f16ef) python3Packages.moto: add onny as maintainer
* [`eb9cde0d`](https://github.com/NixOS/nixpkgs/commit/eb9cde0d3a9d5598459d77903da58c54ebfb9cf0) python3Packages.moto: reformat
* [`583c82b1`](https://github.com/NixOS/nixpkgs/commit/583c82b1211b46c2e382cfcfd2d7d3940130d78c) python3Packages.moto: 5.0.15 -> 5.0.18
* [`039d6ce6`](https://github.com/NixOS/nixpkgs/commit/039d6ce63a13cb272acd6d16ba42b7e1c5dc6fd7) python3Packages.django-oauth-toolkit: 2.4.0 -> 3.0.1
* [`044e6e83`](https://github.com/NixOS/nixpkgs/commit/044e6e833b66cf7b7753977df57e2cd6570caaee) weblate: fix build
* [`7d2df191`](https://github.com/NixOS/nixpkgs/commit/7d2df191070d43686b56ad18c42d9b2a40e68d13) google-chrome: 130.0.6723.69 -> 130.0.6723.92
* [`8d7365f9`](https://github.com/NixOS/nixpkgs/commit/8d7365f9596d92751e64c549641fb83ad956f374) python3Packages.langgraph-sdk: Add checkpoint-duckdb to update script
* [`8926c56f`](https://github.com/NixOS/nixpkgs/commit/8926c56fe10552d24f0575db23af2dc3c819096a) python312Packages.httpx-oauth: init at 0.15.1
* [`f016de10`](https://github.com/NixOS/nixpkgs/commit/f016de10f3b966e4e0b4bc2069cb5985edb27645) paperless-ngx: 2.12.1 -> 2.13.2
* [`ff1532e9`](https://github.com/NixOS/nixpkgs/commit/ff1532e901b7dc211095ceca1147c9c3b1f60dce) ark-pixel-font: fix build
* [`12f1d693`](https://github.com/NixOS/nixpkgs/commit/12f1d69325f720b1bbcbc3cb6bcc757f445a1b0a) cargo-update: 15.0.0 -> 16.0.0
* [`64a34a49`](https://github.com/NixOS/nixpkgs/commit/64a34a49aab91a65a1fc7317463e0fcb40ea501b) pyprland: 2.4.0 -> 2.4.1
* [`6c4d6d7f`](https://github.com/NixOS/nixpkgs/commit/6c4d6d7ffe796e59215b3b2d2ec6be987ea120e4) vcpkg: 2024.09.30 -> 2024.10.21
* [`c751cf7c`](https://github.com/NixOS/nixpkgs/commit/c751cf7ce50be5e42ac9af33b92a28db34c2b24a) pyprland: relax deps to fix build
* [`4331127c`](https://github.com/NixOS/nixpkgs/commit/4331127c64515daa35e1d9a78e96ab48a1eb26b9) vscode-extensions.mongodb.mongodb-vscode: 1.9.1 -> 1.9.3
* [`7095e0f8`](https://github.com/NixOS/nixpkgs/commit/7095e0f8c1a49aab5b12632813e4f8839d6bd442) nixos/guix: add declarative substituters option
* [`67beb4e0`](https://github.com/NixOS/nixpkgs/commit/67beb4e0abc950c5a0f77ed7e42d13e7224ce7de) oterm: 0.4.2 -> 0.6.1
* [`3fb53d92`](https://github.com/NixOS/nixpkgs/commit/3fb53d92b55aad5701dad4be975f066aa4067468) python312Packages.pyexploitdb: 0.2.53 -> 0.2.54
* [`520f8db9`](https://github.com/NixOS/nixpkgs/commit/520f8db902f2f1d3541f01f96cd8d82f5235af7a) matugen: 2.3.0 -> 2.4.0
* [`7a38c054`](https://github.com/NixOS/nixpkgs/commit/7a38c0547d70e5b75d68d7ebc55e501d59edea84) matugen: format with nixfmt-rfc-style
* [`943aff98`](https://github.com/NixOS/nixpkgs/commit/943aff98bc71efd79032009594ff7f16292357c3) matugen: refactor meta, remove with lib;
* [`2995821d`](https://github.com/NixOS/nixpkgs/commit/2995821d810146c4b5b3ba50f5a728ef6212786d) linux-rpi: 6.6.31-stable_20240529 -> 6.6.51-stable_20241008
* [`fb43b706`](https://github.com/NixOS/nixpkgs/commit/fb43b7067e14faa2dd7d982574a9b2a68c8fffbc) raspberrypifw: 1.20240926 -> 1.20241008
* [`711913a6`](https://github.com/NixOS/nixpkgs/commit/711913a6b88ea198e5453db603e7c4b76e85d5fb) tuxedo-keyboard: 3.2.14 -> 4.6.2
* [`1790f7b4`](https://github.com/NixOS/nixpkgs/commit/1790f7b4c3b7d01657ef7b9bb62e1071645d070c) tuxedo-drivers: init at 4.6.2
* [`4391c388`](https://github.com/NixOS/nixpkgs/commit/4391c3883b763cd3d56e1ace0ee131b097d1b618) nixos/tuxedo-drivers: init
* [`c47c52e0`](https://github.com/NixOS/nixpkgs/commit/c47c52e0b7d95d8804c4df05a39ae82d40e9ae1e) tuxedo-drivers: 4.6.2 -> 4.7.0
* [`0335471f`](https://github.com/NixOS/nixpkgs/commit/0335471fde0104385ccea1a77723bd64ec8f3678) immudb: 1.9DOM.2 -> 1.9.5
* [`dca93214`](https://github.com/NixOS/nixpkgs/commit/dca9321498b4679fbed0f939f72cfea9d9b62125) rain: 1.16.1 -> 1.19.0
* [`60472fed`](https://github.com/NixOS/nixpkgs/commit/60472fedcc421420c59adf8a67ca138ca438821e) stress-ng: 0.18.05 -> 0.18.06
* [`a022aaa2`](https://github.com/NixOS/nixpkgs/commit/a022aaa2f1f5f68d8f3514f7764358e913e561df) xdg-desktop-portal-cosmic: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`0788065c`](https://github.com/NixOS/nixpkgs/commit/0788065c45bd7a2f7e3fd94fafb66c978d2d5de9) signal-cli: 0.13.7 -> 0.13.9
* [`c3dc6bc5`](https://github.com/NixOS/nixpkgs/commit/c3dc6bc5bd1ca68f27df3169cd2e34d4ba601483) xdg-desktop-portal-cosmic: inline pname
* [`e65122db`](https://github.com/NixOS/nixpkgs/commit/e65122dbc4fc9dc94b6e8c8a9d3d7727ef3e9a45) tdl: 0.17.5 -> 0.17.7
* [`b6b1e977`](https://github.com/NixOS/nixpkgs/commit/b6b1e9774eb456e645418e204410ffad865a0cfc) pest-ide-tools: remove openssl dependency & MIT license ([NixOS/nixpkgs⁠#320064](https://togithub.com/NixOS/nixpkgs/issues/320064))
* [`e1e75e69`](https://github.com/NixOS/nixpkgs/commit/e1e75e691ef2699139d309edcac88aaca48eec30) python312Packages.cassandra-driver: 3.29.1 -> 3.29.2
* [`daa7d3d9`](https://github.com/NixOS/nixpkgs/commit/daa7d3d93fb919a1716475a8ca60de999fcc0c95) linux_xanmod: apply nixfmt
* [`9907a40a`](https://github.com/NixOS/nixpkgs/commit/9907a40a5796e17e65e344510ff9f2bcb9625290) linux_xanmod: switch from GitHub to GitLab
* [`1cb34222`](https://github.com/NixOS/nixpkgs/commit/1cb34222f9c425544494ed38408ee6db7c6a990a) linux_xanmod: 6.6.58 -> 6.6.59
* [`8fe90568`](https://github.com/NixOS/nixpkgs/commit/8fe9056838242e1e5bdeb5d817e0208b72877cdf) linux_xanmod_latest: 6.11.5 -> 6.11.6
* [`1e4b73da`](https://github.com/NixOS/nixpkgs/commit/1e4b73dad80534ff6cf41ae9801fc8363e73c20f) simple64: add missing desktop file
* [`1c3b10cf`](https://github.com/NixOS/nixpkgs/commit/1c3b10cfc248b7ed1f3cc03b61ee753103467944) python312Packages.pythonnet: fix build
* [`e17b7a15`](https://github.com/NixOS/nixpkgs/commit/e17b7a15dd320bca15802dfefae3fb580e804e07) telegram-desktop: make webkitgtk optional
* [`9c2c41cd`](https://github.com/NixOS/nixpkgs/commit/9c2c41cdabfe89423b326bb62ceda15749a4c9b0) materialgram: 5.6.1.1 -> 5.7.0.1
* [`b9b23581`](https://github.com/NixOS/nixpkgs/commit/b9b235819823498ef220c17b5281bdcbc11c88c9) telegram-desktop: build with ffmpeg_6
* [`f258530b`](https://github.com/NixOS/nixpkgs/commit/f258530bbc5e6887b418494a1003ace66cf74c9e) telegram-desktop: 5.6.3 -> 5.7.1
* [`510da670`](https://github.com/NixOS/nixpkgs/commit/510da6707e195526fb08a87609ef74c65cb41853) _64gram: 1.1.43 -> 1.1.45
* [`c99cac72`](https://github.com/NixOS/nixpkgs/commit/c99cac72c69871429239d7e86d5c03ad5c01f50c) zynaddsubfx: disable PortChecker test unconditionally
* [`18d48aa7`](https://github.com/NixOS/nixpkgs/commit/18d48aa758d1109490e78139df7e6acc85bdc203) ffmpeg: add librist
* [`a9b138d1`](https://github.com/NixOS/nixpkgs/commit/a9b138d17b9dce7a142e4d0c7c6edc832b99a4f5) roxctl: 4.5.3 -> 4.5.4
* [`dffac708`](https://github.com/NixOS/nixpkgs/commit/dffac708c3a3899acebd467baeef01ecaad5db66) telegram-desktop.tg_owt: build with ffmpeg_6
* [`41809e5e`](https://github.com/NixOS/nixpkgs/commit/41809e5e8d1977be4aea501361065924e6612af4) seaweedfs: 3.75 -> 3.79
* [`e3c99d6c`](https://github.com/NixOS/nixpkgs/commit/e3c99d6c50dda8856745d163eb2d531718ff8820) guix: fix build user takeover patch
* [`b7e0ea3a`](https://github.com/NixOS/nixpkgs/commit/b7e0ea3a4ab6d78980cce1d8929f56da9f707bc3) flashfocus: Use path for pidof
* [`08bed55e`](https://github.com/NixOS/nixpkgs/commit/08bed55e78daec2fb4cbdc78779cfcbd900c92ad) febio: darwin sdk refactor
* [`c970f0f7`](https://github.com/NixOS/nixpkgs/commit/c970f0f7cd60d9d98b11729e5a213711bdabff28) febio-studio: darwin sdk refactor
* [`929aebe3`](https://github.com/NixOS/nixpkgs/commit/929aebe3fcb7b98a8d7dfe4241d75c2447d40a39) python312Packages.cohere: 5.11.2 -> 5.11.3
* [`6bbdae6f`](https://github.com/NixOS/nixpkgs/commit/6bbdae6f917eee6c52c1d5a5b14843c159f7b4b5) zsh-forgit: 24.10.0 -> 24.11.0
* [`6d9632a2`](https://github.com/NixOS/nixpkgs/commit/6d9632a2df14cbf176574660b9d2553a8a699162) {kotatogram-desktop,_64gram,materialgram}: fix overriding withWebkit
* [`b0cb8627`](https://github.com/NixOS/nixpkgs/commit/b0cb8627f45f532e10fc651b71794ad145034b88) go-blueprint: 0.8.1 -> 0.8.2
* [`1d5b7e00`](https://github.com/NixOS/nixpkgs/commit/1d5b7e0099f70c6c43b1891f484133efc50e7c20) redmine: 5.1.3 -> 5.1.4
* [`ff546ee4`](https://github.com/NixOS/nixpkgs/commit/ff546ee4f31c357117eb4741e41f355fe476f951) tetrio-plus: split tpsecore into seperate package
* [`ba13a161`](https://github.com/NixOS/nixpkgs/commit/ba13a16109974e554fe606eab123516b96b36769) detect-it-easy: 3.09 -> 3.10
* [`1c182502`](https://github.com/NixOS/nixpkgs/commit/1c182502bfd3f9f685327d37a62e3ea813f1341b) clps2c-compiler: init at 1.0.1
* [`291c6732`](https://github.com/NixOS/nixpkgs/commit/291c673298004570fe5f1896e968449e8c4ab6cf) nvidia-vaapi-driver: 0.0.12 -> 0.0.13
* [`255d5e0d`](https://github.com/NixOS/nixpkgs/commit/255d5e0d43d6d156a325e69a94636df91786133c) Revert "woodpecker-server: 2.7.1 -> 2.7.2"
* [`5f51b9d6`](https://github.com/NixOS/nixpkgs/commit/5f51b9d6ac6e56e9f6a615cbe1644c014848ff9e) flawz: 0.2.2 -> 0.3.0
* [`aef0349b`](https://github.com/NixOS/nixpkgs/commit/aef0349bdcb529ed6a2890551131e43ac1e3cf13) python312Packages.uamqp: 1.6.9 -> 1.6.11
* [`b8b2bef7`](https://github.com/NixOS/nixpkgs/commit/b8b2bef74a59d72236ad4461b333bc860ba3f80f) python312Packages.uamqp: switch to pypa builder
* [`16f94ecf`](https://github.com/NixOS/nixpkgs/commit/16f94ecf827be56ccdeac5c6c73dc180372c0807) galaxy-buds-client: 4.5.4 -> 5.1.0
* [`e0b41a76`](https://github.com/NixOS/nixpkgs/commit/e0b41a76dda8a7788007fbb78e9600dcfffb8e03) SDL_ttf: fix sdltest configure flag
* [`aef019d8`](https://github.com/NixOS/nixpkgs/commit/aef019d8deaef578cc25155cc11c6aaf0dbe0c23) mailhog: move to by-name
* [`05217647`](https://github.com/NixOS/nixpkgs/commit/05217647b9e6e7b1a96487f170229ce463aa11f0) mailhog: nixfmt
* [`ff01b84e`](https://github.com/NixOS/nixpkgs/commit/ff01b84eabe551c6901d1588c09b9d2141fe11d9) mailhog: fix build
* [`baed9316`](https://github.com/NixOS/nixpkgs/commit/baed9316137e9c1d277a2a628485be448db03cf8) freebsd: Support static binaries
* [`928b4da5`](https://github.com/NixOS/nixpkgs/commit/928b4da58e6327dea87737aa6fdc8442457c7a2f) bash: add FreeBSD to static cross compilation special case
* [`2cb5d446`](https://github.com/NixOS/nixpkgs/commit/2cb5d446228994099046025f4340163908db3299) freebsd.init: mark as broken when built dynamically (it is a static binary)
* [`776f433b`](https://github.com/NixOS/nixpkgs/commit/776f433b9bae66b135357ba35c169a30b7899e4d) quick-lookup: 2.1.1 -> 2.1.2
* [`20fff77f`](https://github.com/NixOS/nixpkgs/commit/20fff77fcc33876e4e897562d81b9c83d57769e6) vix: limit package to x86_64-linux ([NixOS/nixpkgs⁠#353569](https://togithub.com/NixOS/nixpkgs/issues/353569))
* [`e19b0195`](https://github.com/NixOS/nixpkgs/commit/e19b0195b43079bac31c27b911a4cd1da3d5944d) SDL_sound: fix sdltest flag
* [`4ddef40c`](https://github.com/NixOS/nixpkgs/commit/4ddef40cb938ec937c0082a2b82a8b3369361140) agg: disable sdltest on darwin
* [`c6585ad0`](https://github.com/NixOS/nixpkgs/commit/c6585ad0077d8f122440d40d30ba5e4dd5a6e587) tart: 2.18.5 -> 2.19.3
* [`eb2009ec`](https://github.com/NixOS/nixpkgs/commit/eb2009ec57598911cdfdb6e148abd092fbcb2d9f) dgen-sdl: fix darwin build
* [`8f55121f`](https://github.com/NixOS/nixpkgs/commit/8f55121f7f7921b2ea7f601fa425d6b8266c6bd7) lib/licenses.nix: add tost
* [`69245718`](https://github.com/NixOS/nixpkgs/commit/692457183faf7d1ae8b61e9336ff2262564382a7) python312Packages.openusd: apply upsteam's new license
* [`35d8ef7a`](https://github.com/NixOS/nixpkgs/commit/35d8ef7a4d3c8731b7db6efac36807e5ccc7be26) swayosd: format with nixfmt
* [`8218cc6b`](https://github.com/NixOS/nixpkgs/commit/8218cc6bd1ad641f3137493b5514e0df6d94124e) wechat-uos: 1.0.0.241 -> 4.0.0.21
* [`ab522505`](https://github.com/NixOS/nixpkgs/commit/ab5225054b0839958a4207b924af506ec23e89df) utf8cpp: 4.0.5 -> 4.0.6
* [`15e07bd8`](https://github.com/NixOS/nixpkgs/commit/15e07bd8205e174b42acb8db510246be6fa738ed) emacsPackages: Don't add nix to melpa updater shell
* [`5a10946c`](https://github.com/NixOS/nixpkgs/commit/5a10946c77cdf0395f2bff82347a80199250fda0) libvpx: 1.14.1 -> 1.15.0
* [`9a023e53`](https://github.com/NixOS/nixpkgs/commit/9a023e536d952be7d83df05075a83abc4d0ec93b) graphviz: 12.1.2 -> 12.2.0
* [`a182a532`](https://github.com/NixOS/nixpkgs/commit/a182a53243828257018c6ef4c7d2edbe89fd63e5) buildFHSEnv: rewrite env building
* [`baa84c3c`](https://github.com/NixOS/nixpkgs/commit/baa84c3c68321678857d6a0627a8c6b814492b86) nim-2_0: 2.0.10 -> 2.0.12
* [`4f8bbed6`](https://github.com/NixOS/nixpkgs/commit/4f8bbed6ca3f6d232aacb80eacb5c9fb4ad05284) rPackages.alcyon: fix build
* [`affa833b`](https://github.com/NixOS/nixpkgs/commit/affa833b2aebe455a637860da5b3f968c3fcea38) python312Packages.hap-python: refactor
* [`76c8e15a`](https://github.com/NixOS/nixpkgs/commit/76c8e15a8ae9e8df62cdd230491d7fb1a4faa932) ostree: 2024.4 -> 2024.8
* [`64c924e0`](https://github.com/NixOS/nixpkgs/commit/64c924e098fb8c2c2055f81317865fb8602c8c66) edge-runtime: move to by-name
* [`1221b2e0`](https://github.com/NixOS/nixpkgs/commit/1221b2e0daa370561a6b8d48b42d63927880e5bf) edge-runtime: nixfmt
* [`c495d970`](https://github.com/NixOS/nixpkgs/commit/c495d97060a31295c66cfd157b6299fcc61b9a31) edge-runtime: 1.53.4 -> 1.60.1
* [`84bf4842`](https://github.com/NixOS/nixpkgs/commit/84bf48421f7381924b218075110af2b569f2434b) checkov: 3.2.276 -> 3.2.277
* [`25d33b8c`](https://github.com/NixOS/nixpkgs/commit/25d33b8c78e7f99a454cce1c37be65df9d0afcdf) dnsdiag: 2.5.0 -> 2.6.0
* [`40b7674b`](https://github.com/NixOS/nixpkgs/commit/40b7674b98ea79a540908b36c2d72add66a35218) nixos/tests/switchTest: Test no boot loader
* [`1c69b0c0`](https://github.com/NixOS/nixpkgs/commit/1c69b0c0e734568af54cd5d5f21231bd6d5870fa) mutagen: 0.17.1 -> 0.18.0
* [`f0668b48`](https://github.com/NixOS/nixpkgs/commit/f0668b4886f06a09a2be67f0821f472e23a86c55) cargo-sweep: fix build by disabling broken test
* [`c351ae96`](https://github.com/NixOS/nixpkgs/commit/c351ae969d6ffb852e85b362189770e13ce5eda3) cargo-sweep: format using nixfmt
* [`efd6331c`](https://github.com/NixOS/nixpkgs/commit/efd6331c95521d24bc7802fc380af9509cf44a15) pytrainer: unpin python 3.10
* [`a36cf528`](https://github.com/NixOS/nixpkgs/commit/a36cf528f76468419d6e7df22ad652607b21e195) git-fast-export: move to by-name
* [`2ff0c93a`](https://github.com/NixOS/nixpkgs/commit/2ff0c93a65b60a40f12a326f3a98133d1e026be8) git-fast-export: nixfmt
* [`6e66b546`](https://github.com/NixOS/nixpkgs/commit/6e66b546a1e0c6e93426ff7b44afbc2f4705293d) git-fast-export: add passthru.updateScript
* [`a7cda683`](https://github.com/NixOS/nixpkgs/commit/a7cda6835fc042a0a70d3e1983863aad0183d229) nixos/tests/switchTest: Remove spurious dbus reload checks
* [`f92ec1bc`](https://github.com/NixOS/nixpkgs/commit/f92ec1bc93990197895f4ce4bcf29354a738f830) nixos/tests/switchTest: Add test for dbus reloading
* [`5d9ac946`](https://github.com/NixOS/nixpkgs/commit/5d9ac94606923cadc983c508dc065213e64e055f) nixos/activation-script: Make `installBootLoader` default a script
* [`5dee69a2`](https://github.com/NixOS/nixpkgs/commit/5dee69a240e48f250918fd57e91e4a66910909d2) git-fast-export: 221024 -> 231118
* [`d7b5ff5f`](https://github.com/NixOS/nixpkgs/commit/d7b5ff5f6822365392086f7f1ddc5edaa583c01d) maintainers: add keksgesicht
* [`20ae63db`](https://github.com/NixOS/nixpkgs/commit/20ae63db781cab9b8ebe2597e8cfd4c87efe405a) tuxedo-drivers: add myself and a few others as maintainers
* [`102e53fb`](https://github.com/NixOS/nixpkgs/commit/102e53fbd4bd85895a84792d4b576c275632b36e) tuxedo-drivers: update build commands
* [`c6cb939c`](https://github.com/NixOS/nixpkgs/commit/c6cb939c84e4efa0b5b11d99358cb472cd807ee3) tuxedo-drivers: 4.7.0 -> 4.9.0
* [`6f05c66e`](https://github.com/NixOS/nixpkgs/commit/6f05c66e17f7f5ff2002de488a0f037badb3ef92) python312Packages.pymc: 5.17.0 -> 5.18.0
* [`7d3596a9`](https://github.com/NixOS/nixpkgs/commit/7d3596a9328e0edfb2dedcee4f82e3c0804252fa) gromacs: 2024.3 -> 2024.4
* [`cc3c24dd`](https://github.com/NixOS/nixpkgs/commit/cc3c24dde3583b44b0eca9418446b33270c15b95) vimPlugins.avante-nvim: 2024-10-18 -> 2024-11-04
* [`0a0e61b0`](https://github.com/NixOS/nixpkgs/commit/0a0e61b073536683e611506ceec0230f526efd15) apachetomcatscanner: add missing dependencies
* [`08790dff`](https://github.com/NixOS/nixpkgs/commit/08790dff7907b73811efbdc3eef8c4662b8c9b68) xorg.libAppleWM: constrain to darwin targets
* [`7819e574`](https://github.com/NixOS/nixpkgs/commit/7819e57453b6f2b86228d4dbae3ee0f00ba72814) pylyzer: 0.0.68 -> 0.0.69
* [`179f1365`](https://github.com/NixOS/nixpkgs/commit/179f1365e022d5fb02144a2d3f4e7b4dbacbc990) rPackages.bgx: fix build
* [`c0aef2b9`](https://github.com/NixOS/nixpkgs/commit/c0aef2b9dc49dbc696ee2b68844a0427a63b14a5) python312Packages.tencentcloud-sdk-python: 3.0.1257 -> 3.0.1259
* [`1c37a249`](https://github.com/NixOS/nixpkgs/commit/1c37a2492c17be2c54f2c35f181871fedebc8125) rPackages.resultant: fix build
* [`8b274c80`](https://github.com/NixOS/nixpkgs/commit/8b274c8054e5f56c839f6efc6dbf38bc4074fdf0) iverilog: Update homepage link
* [`3618ec6a`](https://github.com/NixOS/nixpkgs/commit/3618ec6a0ad2cd68599694eb11b1f400e68c4f20) sile: nixfmt; move to pkgs/by-name
* [`0a5b0c8c`](https://github.com/NixOS/nixpkgs/commit/0a5b0c8cd928ebe29f99f27927b94f6030f4e727) sile: don't use with lib; in meta
* [`fca1f18d`](https://github.com/NixOS/nixpkgs/commit/fca1f18de9448d0861879ac454b5382bc32d221f) sile: use finalAttrs.finalPackage when needed
* [`9f1a0fde`](https://github.com/NixOS/nixpkgs/commit/9f1a0fde5c45c5017c36832bc4577c88a86e0caf) sile: allow easier override of luaEnv
* [`e37658c6`](https://github.com/NixOS/nixpkgs/commit/e37658c6f144b627231cce1be5b12918bb728a01) sile: reorder callPackage arguments like in expression
* [`6b90fbc9`](https://github.com/NixOS/nixpkgs/commit/6b90fbc91f0aec54d30d5e6756392223eb8afbc5) sile: use lib.optionals for Darwin specific inputs
* [`caa10b05`](https://github.com/NixOS/nixpkgs/commit/caa10b055f92d4bfc8da3e4a71fb7264d715c492) nix: update fallback paths automatically
* [`fbd18886`](https://github.com/NixOS/nixpkgs/commit/fbd188864020b9a1226d35b9df1fe465e1f378c1) re-add libsandbox
* [`e2a21bdd`](https://github.com/NixOS/nixpkgs/commit/e2a21bddefb8cbd10710d9dcd4a2293d01325e27) python312Packages.openusd: add gador as co-maintainer
* [`6df0b10d`](https://github.com/NixOS/nixpkgs/commit/6df0b10df6903be10245355ef35dd8435084bd95) Revert "less: Fix withSecure regression"
* [`b2b573e3`](https://github.com/NixOS/nixpkgs/commit/b2b573e39ac0644730c4dc8f04e2b4d152a2c81e) maintainers: update entry for kloenk
* [`5a37bac4`](https://github.com/NixOS/nixpkgs/commit/5a37bac414ff58ca4d36ed9fc4642035d4597b7d) sile: 0.14.17 -> 0.15.5
* [`9c92ae59`](https://github.com/NixOS/nixpkgs/commit/9c92ae59f1931db1ed47acaf793846b964d844d7) linuxPackages.apfs: 0.3.11 -> 0.3.12
* [`c06d108c`](https://github.com/NixOS/nixpkgs/commit/c06d108c276991ee56c2cca9a84d813a7c66b1c1) SDL_gpu: Format using nixfmt-rfc-style
* [`c4edf939`](https://github.com/NixOS/nixpkgs/commit/c4edf939886aa9e61a9e266c776056b9f5d79cbc) Cleanup helsinki maintainer ([NixOS/nixpkgs⁠#353611](https://togithub.com/NixOS/nixpkgs/issues/353611))
* [`083d0095`](https://github.com/NixOS/nixpkgs/commit/083d0095e65a6608d3cb8375d72d0e38a10b512e) SDL_gpu: Fix build on clang 16
* [`0d04728e`](https://github.com/NixOS/nixpkgs/commit/0d04728ee39040de5b6dd0eb1711cc3d100de3cb) nixos/conduit: wait for network-online.target
* [`54d6c4b1`](https://github.com/NixOS/nixpkgs/commit/54d6c4b1547020151a9cf9a4cedf3645a3dcbcc6) earbuds: init at 0.1.9-unstable-2024-06-28
* [`bdef0396`](https://github.com/NixOS/nixpkgs/commit/bdef0396f569727e127977acc56b9fd5c6eb3832) florist: init at 24.2
* [`cc275e64`](https://github.com/NixOS/nixpkgs/commit/cc275e641f1a0fb82616e84817bf21b65650767d) python312Packages.h5py-mpi: remove unused patch
* [`a0df5569`](https://github.com/NixOS/nixpkgs/commit/a0df55691923a6c542a7b33f61ad289850863e34) python312Packages.h5py-mpi: fix build by relaxing mpi4py dependency
* [`1fe651e7`](https://github.com/NixOS/nixpkgs/commit/1fe651e76ca98dee8fb10f715cb2c9312d8f4714) monolith: add nix update script
* [`fa58667f`](https://github.com/NixOS/nixpkgs/commit/fa58667f93ac8784d675618123b5d919ac0d0886) openmolcas: fix shebangs in python scripts
* [`2a64a9a2`](https://github.com/NixOS/nixpkgs/commit/2a64a9a22a7540182b64b90728b0ac51cffd5145) aws-assume-role: move to by-name
* [`45fd66c2`](https://github.com/NixOS/nixpkgs/commit/45fd66c2381cf16805ddec305b551dd82da712af) aws-assume-role: nixfmt
* [`e7e66352`](https://github.com/NixOS/nixpkgs/commit/e7e66352e9c5f525de6dd44c4d463f472ad2ca06) cbconvert: init at 1.0.4
* [`a0b8a795`](https://github.com/NixOS/nixpkgs/commit/a0b8a795a6e33aaf3a88e4c82f43be359f796d1f) aws-assume-role: fix build
* [`7149d521`](https://github.com/NixOS/nixpkgs/commit/7149d521b642740baff075ff03c73e1cfcf98d44) mimir: 2.14.0 -> 2.14.1
* [`0d9236eb`](https://github.com/NixOS/nixpkgs/commit/0d9236eb1807ba08dbbb4f2943ffa61c5b305137) python312Packages.pygtail: 0.8.0 -> 0.14.0
* [`6b659580`](https://github.com/NixOS/nixpkgs/commit/6b6595801400dc24ad9242c8891409a895347902) python312Packages.pygtail: refactor
* [`24a2d2a2`](https://github.com/NixOS/nixpkgs/commit/24a2d2a261aa8d030728bb70581ab3a3f7890846) tree-sitter-grammars: add river ([NixOS/nixpkgs⁠#347752](https://togithub.com/NixOS/nixpkgs/issues/347752))
* [`478934a2`](https://github.com/NixOS/nixpkgs/commit/478934a2a5e314eaf15913c89b13a51ebb4c8e33) matugen: use new darwin sdk pattern
* [`0376c8fc`](https://github.com/NixOS/nixpkgs/commit/0376c8fc98e1e9a46824ced4573567524182a5a8) python312Packages.ush: 3.1.0 -> 4.1.0
* [`9f2b4ca0`](https://github.com/NixOS/nixpkgs/commit/9f2b4ca03cee23bc46719c9c87e7382a102ccf6d) python312Packages.ush: switch to pypa builder
* [`a1f1c849`](https://github.com/NixOS/nixpkgs/commit/a1f1c849ad9d67ad0151f610e2955b43ffdfd7e8) vscode-extensions.antyos.openscad 1.1.1 → 1.3.1
* [`7cbc9118`](https://github.com/NixOS/nixpkgs/commit/7cbc9118127ab4501c88252d129bc09b53537569) gossip: 0.11.2 -> 0.12.0
* [`3cc9bcbf`](https://github.com/NixOS/nixpkgs/commit/3cc9bcbf33d3d3af63f874d5f90afa1bdf5a1708) gossip: pin to ffmpeg 6
* [`74561ffe`](https://github.com/NixOS/nixpkgs/commit/74561ffeac40631621af34a6d469c6571a8cdf23) python3Packages.torch-tb-profiler: 0.3.1 -> 0.4.0
* [`64a6e829`](https://github.com/NixOS/nixpkgs/commit/64a6e8292aa39a664743d20b520173320dcea6bc) nixos/acme: Set /var/lib/acme permissions to 755
* [`ff427fbc`](https://github.com/NixOS/nixpkgs/commit/ff427fbc30c42fe270f1ac029320be2d13bff8ca) zed-editor: 0.159.7 -> 0.159.10
* [`b0519b43`](https://github.com/NixOS/nixpkgs/commit/b0519b43188f7b08e14f9b81bae2cdda730673c6) mariadb: 10.5.27, 10.6.20, 10.11.10, 11.4.4
* [`4457d955`](https://github.com/NixOS/nixpkgs/commit/4457d955d01a4f8e0187448063e146bc36e4745f) yabai: refactor to new sdk pattern
* [`88eb0fcc`](https://github.com/NixOS/nixpkgs/commit/88eb0fcca4d46cb4f2211394b213d6175add582e) yabai: switch to apple-sdk_15
* [`b2607dee`](https://github.com/NixOS/nixpkgs/commit/b2607dee162817714049169785310ea52684cb0f) yabai: add versionCheckHook
* [`550d4a2a`](https://github.com/NixOS/nixpkgs/commit/550d4a2af43d74f0fded665f01f3b4651af835d7) yabai: modernize
* [`af9131fa`](https://github.com/NixOS/nixpkgs/commit/af9131fa6de1bd184ad5e8d20a4034c425d3b7d2) yabai: 7.1.4 -> 7.1.5
* [`2610fc98`](https://github.com/NixOS/nixpkgs/commit/2610fc983ab0d678a0914a3b61367a4ead11777b) objfw: 1.1.7 -> 1.2
* [`45bb433c`](https://github.com/NixOS/nixpkgs/commit/45bb433c54e34ce846f5bfcaee42c6359ad56ca0) paperless-ngx: 2.13.2 -> 2.13.4
* [`46cce423`](https://github.com/NixOS/nixpkgs/commit/46cce423ec19bb9418a9c2fdcdbec058965cbdb6) atkinson-monolegible:init at 0-unstable-2023-02-27
* [`f9c15bce`](https://github.com/NixOS/nixpkgs/commit/f9c15bce32490d67e25aa14fb5a876c65b2f681d) lightningcss: 1.27.0 → 1.28.0
* [`e15b1502`](https://github.com/NixOS/nixpkgs/commit/e15b1502f8540d95ebea6d0d8c37e89e4f9423d9) fastfetch: 2.28.0 -> 2.29.0
* [`9a4e945c`](https://github.com/NixOS/nixpkgs/commit/9a4e945cebb27a363a4d150affdade25258d3207) nixos/tests/forgejo: fix after git v2.47 bump
* [`9aeabf40`](https://github.com/NixOS/nixpkgs/commit/9aeabf401af8aa70f73cd9713ec5c544f985f697) yt-dlp: 2024.10.22 -> 2024.11.4, use constant changlog URL
* [`4b13779f`](https://github.com/NixOS/nixpkgs/commit/4b13779f33214e035deeda6097b5b9db019e48a0) python3Packages.subliminal: mark as not broken
* [`e2dac786`](https://github.com/NixOS/nixpkgs/commit/e2dac786f09eb7374c5c225a49b8a3787e3f166b) linux-wallpaperengine: init at 0-unstable-2024-10-13
* [`88e1c5d4`](https://github.com/NixOS/nixpkgs/commit/88e1c5d40464bb8a0b329efb77e86b963c5e97e8) plandex-server: add git to path
* [`5058251d`](https://github.com/NixOS/nixpkgs/commit/5058251dd857233ac0e7f191583d957400d87696) CONTRIBUTING.md: Add note about nixpkgs-merge-bot restricted authors
* [`5e5192e6`](https://github.com/NixOS/nixpkgs/commit/5e5192e6c12a630e592e38b2a119933463b8b8cb) taisei: move to pkgs/by-name
* [`daf3bcfb`](https://github.com/NixOS/nixpkgs/commit/daf3bcfbd363375a492442d0e57c1e8318594302) taisei: format with nixfmt
* [`260b34e1`](https://github.com/NixOS/nixpkgs/commit/260b34e1504d91a996ac4c3f6f24bffbbc211f59) butterfly: init at 2.2.1
* [`e8fd2805`](https://github.com/NixOS/nixpkgs/commit/e8fd280532ab2bd7d88679db92760cd06748faf4) maid: update dependencies
* [`6d3cc742`](https://github.com/NixOS/nixpkgs/commit/6d3cc7422121699491d4368c153c2928d49d9bc8) spnavcfg: add X11 to the build inputs
* [`1ffa3b64`](https://github.com/NixOS/nixpkgs/commit/1ffa3b644df17a5ec4fa18bfeac36022c7e2e970) taisei: refactor
* [`fb382172`](https://github.com/NixOS/nixpkgs/commit/fb3821722e9cb3311cdcff40e6d89595c7e9c90b) taisei: add Gliczy as maintainer
* [`0e68d7bd`](https://github.com/NixOS/nixpkgs/commit/0e68d7bdfb1640f1053cda5fd06be862520064dd) lightningcss: enable aarch64-linux builds and set platform to all
* [`dd086ca4`](https://github.com/NixOS/nixpkgs/commit/dd086ca402002aa4516640774072ec6ee1ecaa28) msi-ec: 0-unstable-2024-09-19 -> 0-unstable-2024-11-04
* [`2e99cc48`](https://github.com/NixOS/nixpkgs/commit/2e99cc48c7715a036b89f93c3dd297de4b386368) transmission_4: update for the new SDK pattern on Darwin
* [`174ef9b8`](https://github.com/NixOS/nixpkgs/commit/174ef9b84ac4286e298d9283f5a2ca27baafb258) transmission_4: fix build on Darwin
* [`26c3a41f`](https://github.com/NixOS/nixpkgs/commit/26c3a41f6bbcd14e0e94da776d7f07ebfef62bea) python312Packages.moto: add (trivial) `sns` optional dependency
* [`37226af6`](https://github.com/NixOS/nixpkgs/commit/37226af6e86f5046ae4d11d959dfc0b51be9a32a) python312Packages.great-expectations: init at 1.2.1
* [`137f3729`](https://github.com/NixOS/nixpkgs/commit/137f3729455cee4ee75ac38c7b18b936a3e94db8) vimPlugins.lze: 0.1.4 -> 0.4.4 ([NixOS/nixpkgs⁠#353109](https://togithub.com/NixOS/nixpkgs/issues/353109))
* [`ae7f50cd`](https://github.com/NixOS/nixpkgs/commit/ae7f50cd7d4b8a1bc0d65955eced688f7393d6df) fritz-exporter: add attrs to relaxed deps
* [`e2210c0e`](https://github.com/NixOS/nixpkgs/commit/e2210c0ebc861bd60710ea4008316297411d3d6a) dhcpcd:  10.0.6 -> 10.1.0
* [`6c5287eb`](https://github.com/NixOS/nixpkgs/commit/6c5287eb04e3a7eeca944e75afd7d66c8086eeb7) maintainers: add vtimofeenko to maintainer list
* [`0ea31d13`](https://github.com/NixOS/nixpkgs/commit/0ea31d130cc50ed6bb62e201c24705e998bd0547) alacritty: use new darwin SDK pattern
* [`57b696fa`](https://github.com/NixOS/nixpkgs/commit/57b696fa7d98ee756f970008f29e6ad741b2d030) hilbish: 2.3.2 -> 2.3.3
* [`ccda0ce1`](https://github.com/NixOS/nixpkgs/commit/ccda0ce11855ffabf1e7629fdad0956cb1f6eea3) python312Packages.aiortm: 0.9.22 -> 0.9.24
* [`a475aebc`](https://github.com/NixOS/nixpkgs/commit/a475aebcaacc282141b7c6b875a6185828cd0f31) python312Packages.bc-detect-secrets: 1.5.17 -> 1.5.18
* [`560626d0`](https://github.com/NixOS/nixpkgs/commit/560626d0d617069bee5f0609257eb5f02b3eba07) python312Packages.mando: 0.7.1 -> 0.8.2 ([NixOS/nixpkgs⁠#352777](https://togithub.com/NixOS/nixpkgs/issues/352777))
* [`0a4aaa9d`](https://github.com/NixOS/nixpkgs/commit/0a4aaa9d9a73735890cc7dca8db14c1aea0cb189) pkgs/stdenv/freebsd: update x86_64-unknown-freebsd bootstrap-files
* [`05e26cb3`](https://github.com/NixOS/nixpkgs/commit/05e26cb37392ea4f706b3220ef7b017a7a4aa57d) python312Packages.xmlschema: 3.4.2 -> 3.4.3 ([NixOS/nixpkgs⁠#352700](https://togithub.com/NixOS/nixpkgs/issues/352700))
* [`4f9f5816`](https://github.com/NixOS/nixpkgs/commit/4f9f5816d3620a7347448e638993c9d01d63eca3) python312Packages.bloodyad: 2.0.7 -> 2.0.8
* [`6760f0a7`](https://github.com/NixOS/nixpkgs/commit/6760f0a702b1fa562be952451e4cad3ddece665e) brave: fix qt theming ([NixOS/nixpkgs⁠#352667](https://togithub.com/NixOS/nixpkgs/issues/352667))
* [`b818e0cb`](https://github.com/NixOS/nixpkgs/commit/b818e0cbb858871397a7c5a07168c15e0119b602) docker-buildx: 0.17.1 -> 0.18.0 ([NixOS/nixpkgs⁠#352575](https://togithub.com/NixOS/nixpkgs/issues/352575))
* [`6f42eff1`](https://github.com/NixOS/nixpkgs/commit/6f42eff1defa62cd751cba0988069b9e08dc475f) ruby_3_2: 3.2.4 -> 3.2.5 ([NixOS/nixpkgs⁠#352560](https://togithub.com/NixOS/nixpkgs/issues/352560))
* [`23fd859f`](https://github.com/NixOS/nixpkgs/commit/23fd859f452bc1e6050b88084b5203d5ab33c96f) taisei: 1.3.2 -> 1.4.2
* [`0bd69ba7`](https://github.com/NixOS/nixpkgs/commit/0bd69ba761886624040c3d16c90ec95dca49d941) pizauth: fix build on darwin
* [`bdf04401`](https://github.com/NixOS/nixpkgs/commit/bdf044013a681ead5978087cf2bd2ecf48b9a29d) vte: 0.78.0 -> 0.78.1, fix darwin build
* [`ce8581c2`](https://github.com/NixOS/nixpkgs/commit/ce8581c206a1583f84177eae23dad7d6fd25a55f) python312Packages.fastapi-sso: 0.15.0 -> 0.17.0
* [`525386d0`](https://github.com/NixOS/nixpkgs/commit/525386d0eb4bdca9157e914e64181e9dc0e25ef2) python312Packages.monzopy: 1.3.2 -> 1.4.2
* [`254bf2a3`](https://github.com/NixOS/nixpkgs/commit/254bf2a34bc57849aefe0c438b6c00f30192368a) rio: fix darwin build by providing libutil
* [`224709bb`](https://github.com/NixOS/nixpkgs/commit/224709bbf01f39ba5137d38db8257f8a8ba8a948) rio: format with nixfmt-rfc-style
* [`982d526b`](https://github.com/NixOS/nixpkgs/commit/982d526b78a70834bf3df0675cdfef86ab1dba45) rio: use apple-sdk_11 on x86_64 too
* [`12437967`](https://github.com/NixOS/nixpkgs/commit/12437967ee8ca9a96576eb9e33462381e8913266) vector: readd missing mig command on darwin
* [`132023e2`](https://github.com/NixOS/nixpkgs/commit/132023e223405a165edac815261a56132d36d74b) python312Packages.appimage: init at 1.0.0
* [`a19f263b`](https://github.com/NixOS/nixpkgs/commit/a19f263bccb947c5bcd1f77902424ab9cb43202e) ssh-mitm: 4.1.1 -> 5.0.0
* [`2748fb9a`](https://github.com/NixOS/nixpkgs/commit/2748fb9a0b7cd06bba887ceb2c1cdae4855b7deb) vimPlugins.blink-cmp: 0.5.0 -> 0.5.1
* [`6d0030ad`](https://github.com/NixOS/nixpkgs/commit/6d0030ad09fa3ff485d54a7892807ca65cc556d9) rPackages.scorematchingad: fixed build
* [`c4c7d040`](https://github.com/NixOS/nixpkgs/commit/c4c7d040109e6b663782d28921d3a63654e13678) rPackages.timeless: fixed build
* [`3cd91c00`](https://github.com/NixOS/nixpkgs/commit/3cd91c00ba9e2428b4f83953428d17af5a1cdb0a) rPackages.ravetools: fixed build
* [`b975612e`](https://github.com/NixOS/nixpkgs/commit/b975612ef13f177db2d8b093b055e87f7c121c55) python312Packages.django-haystack: disable tests on darwin
* [`7d3e3f0d`](https://github.com/NixOS/nixpkgs/commit/7d3e3f0d6161c6bac8471bb9eefa6ae46b0dadc3) python312Packages.pyfxa: fix build, add missing dependencies
* [`f5048d4a`](https://github.com/NixOS/nixpkgs/commit/f5048d4a6daf569c3e8cf8b3f6a36725a1b0f0f2) python312Packages.django-silk: 5.2.0 -> 5.3.0
* [`87447256`](https://github.com/NixOS/nixpkgs/commit/87447256cd38dc4ec398e6b2a55ea40b58a4f1e4) obsidian: 1.7.4 -> 1.7.5
* [`b4832813`](https://github.com/NixOS/nixpkgs/commit/b4832813864c4d7e84f3cbeed6d6061013c6dc4f) empty-epsilon: 2024.06.20 -> 2024.08.09
* [`d8aeca87`](https://github.com/NixOS/nixpkgs/commit/d8aeca87e695a8e4cae869e800b7f897c2d43e7b) obsidian: use magick instead of convert
* [`5b136316`](https://github.com/NixOS/nixpkgs/commit/5b136316aacadd0447dc24ba04c449d287ca8cea) pkgsi686Linux.swtpm: pull upstream 64-bit file api fix
* [`9904e239`](https://github.com/NixOS/nixpkgs/commit/9904e2396682dcf955b6795152ddb4edefe6ba72) goldendict-ng: 24.09.0 -> 24.09.1
* [`a685fde6`](https://github.com/NixOS/nixpkgs/commit/a685fde6db96c5cc91484b123e71bb514030ff23) bruno: switch to apple-sdk_11
* [`3c1f559d`](https://github.com/NixOS/nixpkgs/commit/3c1f559d4f7efa8be0259bf2f97adc80f6bffb3e) wakapi: 2.12.1 -> 2.12.2
* [`7c69bb5c`](https://github.com/NixOS/nixpkgs/commit/7c69bb5c155da045dfe8e77b02bdd94b3df035f6) aces-container: fix darwin build
* [`9da04cc7`](https://github.com/NixOS/nixpkgs/commit/9da04cc7dbadb156efa0aeba2e8d0f3fb75a874b) afuse: format
* [`9de9d365`](https://github.com/NixOS/nixpkgs/commit/9de9d365273527d9e96a2ecc3c2233776642a893) capstone: 5.0.1 -> 5.0.3
* [`02f20000`](https://github.com/NixOS/nixpkgs/commit/02f20000a25fd19ddf49c0915496285d44cd5dc5) cctools: set Darwin team as maintainers
* [`e7d6ea8c`](https://github.com/NixOS/nixpkgs/commit/e7d6ea8ca61cd654dd8a5a5087ad3925a0560299) ld64: set Darwin team as maintainers
* [`f225300b`](https://github.com/NixOS/nixpkgs/commit/f225300be4c95a1b03031e5522f389b9ba42a152) aribb25: format
* [`2cc02eca`](https://github.com/NixOS/nixpkgs/commit/2cc02eca4defd10db8e770bf9204bc5688c89d27) aribb25: remove xcbuild
* [`239ef2ff`](https://github.com/NixOS/nixpkgs/commit/239ef2ff2d89e2f164b485f72a50ff01866f9d25) firefox-unwrapped: 132.0 -> 132.0.1
* [`29342f3a`](https://github.com/NixOS/nixpkgs/commit/29342f3a479d57d70379951c011e7a3904f5fb06) bacon: 3.0.0 -> 3.2.0
* [`3e9783d8`](https://github.com/NixOS/nixpkgs/commit/3e9783d8cc60378d1a474032343c5cede617bc2b) firefox-bin-unwrapped: 132.0 -> 132.0.1
* [`37058d40`](https://github.com/NixOS/nixpkgs/commit/37058d400c5f5161da1535bbf74c77b8722c49a0) cosmic-edit: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`ff17208a`](https://github.com/NixOS/nixpkgs/commit/ff17208a821a012ca8c29902d98f631f0286da03) cfn-nag: fix gemfile so that binaries are generated
* [`c9c80336`](https://github.com/NixOS/nixpkgs/commit/c9c80336d46ca6c7e90d4de1ff1e583a4cac5fc6) upwork: 5.8.0.33 -> 5.8.0.35
* [`d42d2761`](https://github.com/NixOS/nixpkgs/commit/d42d2761923ecf55fd4932f7524507cb1e375825) discord: bump all versions
* [`dc83bfd6`](https://github.com/NixOS/nixpkgs/commit/dc83bfd616a47a54921556a117561ebdef2fd1af) cosmic-term: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`7495125f`](https://github.com/NixOS/nixpkgs/commit/7495125f91eaf57f565196c2183c3be3b670d8cf) bat: switch to apple-sdk_11
* [`bda767ef`](https://github.com/NixOS/nixpkgs/commit/bda767efc949a2d50ad48b7b14d1524ce59f68d7) lsd: switch to apple-sdk_11
* [`2aa42ec6`](https://github.com/NixOS/nixpkgs/commit/2aa42ec64465970a2dd12b2e6e83a168c599fea7) delta: switch to apple-sdk_11
* [`580741f0`](https://github.com/NixOS/nixpkgs/commit/580741f0fa29e698ee6b88af35b917e1e3c00ea8) git-interactive-rebase-tool: switch to apple-sdk_11
* [`dbcea082`](https://github.com/NixOS/nixpkgs/commit/dbcea0828a0865b89534a81f1e3df3f5ea780a9c) vimv-rs: switch to apple-sdk_11
* [`8e8f6c00`](https://github.com/NixOS/nixpkgs/commit/8e8f6c00e85cf1beb457917ccd9a14d064f4bd41) ripgrep: switch to apple-sdk_11
* [`0ae04baf`](https://github.com/NixOS/nixpkgs/commit/0ae04baf296e7f569347567846951666d194bfe6) granted: 0.35.2 -> 0.36.0
* [`e08f1da4`](https://github.com/NixOS/nixpkgs/commit/e08f1da4a653b69b42e3dd80362a6748e1d1538c) asleap: format
* [`7c1cc43d`](https://github.com/NixOS/nixpkgs/commit/7c1cc43d50ec4d51004ffa815341ab4a33010730) asleap: modernize
* [`29145be6`](https://github.com/NixOS/nixpkgs/commit/29145be6a7900733f43b8dc219f4b755603a1018) asleap: add meta.platforms
* [`67c5af53`](https://github.com/NixOS/nixpkgs/commit/67c5af53ba46f760b42bd25eeec7e512e1420b0e) asleap: move to by-name
* [`8ec0aa7c`](https://github.com/NixOS/nixpkgs/commit/8ec0aa7cb6b010f57be015b6633e2862271f2e08) aribb25: fix darwin
* [`3de54e3d`](https://github.com/NixOS/nixpkgs/commit/3de54e3d7408cc69ac80a8668edfcdb7986ca4f3) ats2: format
* [`f4f2eb89`](https://github.com/NixOS/nixpkgs/commit/f4f2eb89bf4a6ba7bf13760893c69a3ca62127c7) ats2: fix darwin build
* [`6bd632f1`](https://github.com/NixOS/nixpkgs/commit/6bd632f1646c3ee798e2e09c9fc3ad265436e3f8) ats2: move to by-name
* [`bab7ef30`](https://github.com/NixOS/nixpkgs/commit/bab7ef307cb11e2d2dc9b9ddf2d1de68f220ed45) pythonImportsCheckHook: lint with ShellCheck
* [`ccb418b6`](https://github.com/NixOS/nixpkgs/commit/ccb418b69938ebdac9337baa9cdceeb43b3497cd) pythonNamespacesHook: lint with ShellCheck
* [`e4f2f9dd`](https://github.com/NixOS/nixpkgs/commit/e4f2f9dd22db433d54c9c3e25fc6cee6c3471d09) pythonOutputDistHook: lint with ShellCheck
* [`3a79bc3a`](https://github.com/NixOS/nixpkgs/commit/3a79bc3aee323c79b534cb5ca80d85daf60b4182) pythonRelaxDepsHook: handle attributes `__structuredAttrs`-agnostically
* [`29c08ada`](https://github.com/NixOS/nixpkgs/commit/29c08adae171f1c273a0a15c00068205a9965bf2) pythonRelaxDepsHook: lint with ShellCheck
* [`65293f42`](https://github.com/NixOS/nixpkgs/commit/65293f424779e4df5d892e955dd03cf8d0ed84b0) pythonRemoveTestDirHook: lint with ShellCheck
* [`e32457af`](https://github.com/NixOS/nixpkgs/commit/e32457af0c9de65a4d3f57afd8b4c238da65d07a) setuptoolsRustHook: lint with ShellCheck
* [`6597b74f`](https://github.com/NixOS/nixpkgs/commit/6597b74fea10a79f09ef3fbcf02620e238992845) pypaBuildHook.tests: modernize
* [`215b3023`](https://github.com/NixOS/nixpkgs/commit/215b30238e606155f93af78d877f56a42795cfd5) spacebar: format
* [`b909deee`](https://github.com/NixOS/nixpkgs/commit/b909deee7fd9682cb4584e727e2fb3b3348ddc99) spacebar: switch to apple-sdk_12
* [`18176d9f`](https://github.com/NixOS/nixpkgs/commit/18176d9f116ffcae457f9a4b4a339e30f5c7e775) spacebar: move to by-name
* [`ddc51f70`](https://github.com/NixOS/nixpkgs/commit/ddc51f709f0a84fa78231e56b5b15e98da620afa) home-assistant-custom-components.prometheus_sensor: 1.1.0 -> 1.1.2
* [`5955b4fe`](https://github.com/NixOS/nixpkgs/commit/5955b4feac7f20d4a271a44c05b244d026d5818c) cargo-deadlinks: fix build
* [`aa689c67`](https://github.com/NixOS/nixpkgs/commit/aa689c679c90ea9a84c99cfb1ef5a7ab4ddbbf9b) dialect: 2.4.2 -> 2.5.0 ([NixOS/nixpkgs⁠#353294](https://togithub.com/NixOS/nixpkgs/issues/353294))
* [`3aff222f`](https://github.com/NixOS/nixpkgs/commit/3aff222fd7ab412247a162ad2d8a5f5e71d0e156) berry: format
* [`483eb12a`](https://github.com/NixOS/nixpkgs/commit/483eb12ac9a3b137c730c927a7a1929e152cc6fc) snowflake-cli: init at 3.1.0
* [`75943b09`](https://github.com/NixOS/nixpkgs/commit/75943b097172cdeae16c934471dafd28a9bf23aa) linuxPackages.isgx: mark as broken for kernels >= 6.4
* [`9ea79aff`](https://github.com/NixOS/nixpkgs/commit/9ea79affa90e22979324ffb377203add21a41ae6) nixos/profiles/minimal: remove programs.ssh.setXAuthLocation
* [`ae839936`](https://github.com/NixOS/nixpkgs/commit/ae839936d9cd209767175dfa498db283812f2976) home-assistant-custom-lovelace-modules.universal-remote-card: 4.1.2 -> 4.1.3
* [`476d7434`](https://github.com/NixOS/nixpkgs/commit/476d7434dea6ed1404b425cfdc5034916894f010) vector: format with nixfmt-rfc-style
* [`3f68a9fc`](https://github.com/NixOS/nixpkgs/commit/3f68a9fca12e9c7881cee68aada847c7a99dbd37) python312Packages.tokenizers: 0.20.1 -> 0.20.2
* [`2a27e905`](https://github.com/NixOS/nixpkgs/commit/2a27e9054cb808e21e05fe819026a48a63f9a77a) qt6.qtdeclarative: backport a patch fixing crashes in Kirigami apps
* [`b048be05`](https://github.com/NixOS/nixpkgs/commit/b048be052ccff215e125b9fbef825f296dcbe599) Reapply "less: Fix withSecure regression"
* [`99ad7e76`](https://github.com/NixOS/nixpkgs/commit/99ad7e764915be4b8261c75014c0409e5b916245) bant: add passthru.updateScript
* [`c63dfcd3`](https://github.com/NixOS/nixpkgs/commit/c63dfcd3bb0995ad67e43fa8d9d1da65851ccfe3) bant: 0.1.7 -> 0.1.8
* [`73befd55`](https://github.com/NixOS/nixpkgs/commit/73befd559eabd53c289e21364c39d01eb0a6dea6) python312Packages.sagemaker: relax attrs dependency to fix build
* [`7614e2c6`](https://github.com/NixOS/nixpkgs/commit/7614e2c62f4a0ccf70359e4af73647407b6e4338) yalc: migrate from nodePackages
* [`a10bcc54`](https://github.com/NixOS/nixpkgs/commit/a10bcc549a614afd0f41dc1f5abfe5dd83ab83a4) swayosd: 0-unstable-2024-04-15 -> 0.1.0
* [`18ea4d34`](https://github.com/NixOS/nixpkgs/commit/18ea4d347856280975d37fc035c31a4f1cc93f24) rapidjson: remove uses of `with`
* [`1ca7aa23`](https://github.com/NixOS/nixpkgs/commit/1ca7aa23333dd594f4e072948badbce316b282a2) jetbrains-toolbox: add update script
* [`a614e900`](https://github.com/NixOS/nixpkgs/commit/a614e9006e01c0c05769eb1062d39ab9ae6101e0) jetbrains-toolbox: 2.4.1.32573 -> 2.5.1.34629
* [`00a0b29d`](https://github.com/NixOS/nixpkgs/commit/00a0b29d983df98bed781ae4f531ea6fc41d4d86) lunatask: nixfmt
* [`e3c59b5a`](https://github.com/NixOS/nixpkgs/commit/e3c59b5a49ce61fd7d8b62f3342bebc1ef6e7b83) colmena: only depend on one nix version
* [`71408df7`](https://github.com/NixOS/nixpkgs/commit/71408df70fd5bfbc0e5fc3776a942e2b0b93dad6) tamarin-prover: 1.8.0 → 1.10.0
* [`43b40f3b`](https://github.com/NixOS/nixpkgs/commit/43b40f3ba2bc2fe7c24472736b65b64189fee857) geolite-legacy: 20230901 → 20240720
* [`e3952520`](https://github.com/NixOS/nixpkgs/commit/e395252057a970084698e7204de03d890a7a0e2a) geolite-legacy: reformat according to rfc
* [`e9d417cd`](https://github.com/NixOS/nixpkgs/commit/e9d417cdd14b2bf9dcd09d0a396d6489f898958b) limesctl: drop
* [`0acd19c9`](https://github.com/NixOS/nixpkgs/commit/0acd19c9fc147d487154242239bd851c67c4b142) onionshare: fix runtime
* [`a96e4d9b`](https://github.com/NixOS/nixpkgs/commit/a96e4d9bfe337cf7b795658ee7409811094a2196) docker: use lib.versionOlder in literalExpression
* [`c8b3472f`](https://github.com/NixOS/nixpkgs/commit/c8b3472f1c59dcda1072a6a8cda7f77d34d7469a) rPackages.OpenCL: fix build
* [`4f8361ef`](https://github.com/NixOS/nixpkgs/commit/4f8361ef85a75f9158e41b1aeaa110b36b901033) gnomeExtensions.gsconnect: adopt by doronbehar
* [`035da94e`](https://github.com/NixOS/nixpkgs/commit/035da94ea9119220235b88187ef280953c40106f) gnomeExtensions.gsconnect: 57 -> 58
* [`9de71c61`](https://github.com/NixOS/nixpkgs/commit/9de71c61f5e87e35c0017a0dcc90a47977ecf452) lunatask: move to pkgs/by-name
* [`95e92966`](https://github.com/NixOS/nixpkgs/commit/95e929663d5121d52ca2a631e11e3b385117bca9) lunatask: 2.0.11 -> 2.0.12
* [`674769e6`](https://github.com/NixOS/nixpkgs/commit/674769e6790a3a8234e13454896baea27a82695b) lunatask: small improvements
* [`e510e227`](https://github.com/NixOS/nixpkgs/commit/e510e227beafdd3bcb5b4a3c0f6feefcb0d40c21) kitty: Binary wrap kitty, and sign on darwin
* [`7d1abc0f`](https://github.com/NixOS/nixpkgs/commit/7d1abc0fc5a6c07c1b8942f92c377a016be34174) musescore: apple-sdk migration, removed portaudio override
* [`82cfe011`](https://github.com/NixOS/nixpkgs/commit/82cfe011c4aff66538c60aac5648ff05ab7bdd31) lunatask: adopt
* [`f23d794c`](https://github.com/NixOS/nixpkgs/commit/f23d794c07dbf84289b84218eb235b3725121a93) python3Packages.irc: build fix for Python 3.11
* [`f919d20f`](https://github.com/NixOS/nixpkgs/commit/f919d20f12a2e38d4e20ed11d132ed92a9edea2f) lazysql: fix incorrect version output ([NixOS/nixpkgs⁠#353654](https://togithub.com/NixOS/nixpkgs/issues/353654))
* [`209e024a`](https://github.com/NixOS/nixpkgs/commit/209e024a2d470c997b6bff423a345d4d8724d877) uv: 0.4.29 -> 0.4.30
* [`7fe77273`](https://github.com/NixOS/nixpkgs/commit/7fe7727384b23dd58a3b115e7642db7ec842d60c) kafka-delta-ingest: unstable-2021-12-08 -> 0-unstable-2024-11-05
* [`69d3ba44`](https://github.com/NixOS/nixpkgs/commit/69d3ba44662fab5bc6fd0d81b8fabe6c23013854) forgejo: remove `refs/tags/` from github release `meta.changelog`
* [`8fff01c7`](https://github.com/NixOS/nixpkgs/commit/8fff01c7e80f24d515775aea05bacfaf81bcf55b) komac: remove `refs/tags/` from github release `meta.changelog`
* [`747b0ddc`](https://github.com/NixOS/nixpkgs/commit/747b0ddc1747f63a98267028669be0e334ec46c8) python312Packages.xdg-base-dirs: remove `refs/tags/` from github release `meta.changelog`
* [`ead2fda6`](https://github.com/NixOS/nixpkgs/commit/ead2fda64c1b26e43dc32e3c03c19059f7b7f013) typst: remove `refs/tags/` from github release `meta.changelog`
* [`2ec380a3`](https://github.com/NixOS/nixpkgs/commit/2ec380a34d8de15e1053cec472f58b79bb643617) equibop: remove `refs/tags/` from github release `meta.changelog`
* [`a3b81267`](https://github.com/NixOS/nixpkgs/commit/a3b81267aaa0f5aa70c9275bd305fdda581cec8f) mujoco: 3.2.4 -> 3.2.5
* [`975ae5ec`](https://github.com/NixOS/nixpkgs/commit/975ae5ec7eb56363e35a60b7185053c9534b20b3) python312Packages.tldextract: 5.1.2 -> 5.1.3
* [`ee673e60`](https://github.com/NixOS/nixpkgs/commit/ee673e603c986cbdb444e0e656d6e3c8e3f13c12) python312Packages.radon: fix build by relaxing mando
* [`a76a5d50`](https://github.com/NixOS/nixpkgs/commit/a76a5d50b50a19688d939457befe213bf664656b) python312Packages.reolink-aio: 0.10.1 -> 0.10.3
* [`28569cf9`](https://github.com/NixOS/nixpkgs/commit/28569cf91d0d8ad6036f197e2496f288d2b3b804) python312Packages.uiprotect: 6.3.2 -> 6.4.0
* [`a36b4d9a`](https://github.com/NixOS/nixpkgs/commit/a36b4d9ac9e2f4c42b145685a31ac8b58776e8cb) wl-screenrec: pin ffmpeg 6
* [`df58e0e3`](https://github.com/NixOS/nixpkgs/commit/df58e0e34da77b0ee3909c9687406f25756dd229) python312Packages.llm: 0.16 -> 0.17.1
* [`62a81793`](https://github.com/NixOS/nixpkgs/commit/62a8179390ca211192394643aeed1f3a57de0796) rPackages.mcrPioda: fixed build
* [`cb11b48c`](https://github.com/NixOS/nixpkgs/commit/cb11b48c1bab856a7b73a9074b13cd7567c8d982) lemurs: fix build error caused by https://github.com/rust-lang/rust/issues/115010
* [`abeafd2a`](https://github.com/NixOS/nixpkgs/commit/abeafd2a72c3451a7ef45957bbbf6ddef73ae1b3) nixos/kanidm: allow not setting bindaddress
* [`dfd82227`](https://github.com/NixOS/nixpkgs/commit/dfd822276d3088a6fd1072983d99b7b029497315) raycast: 1.84.10 -> 1.84.12
* [`263dc0c3`](https://github.com/NixOS/nixpkgs/commit/263dc0c329c55980df9de0cfae9510b21ac4b942) maude: 3.3.1 -> 3.4
* [`cd11f9b6`](https://github.com/NixOS/nixpkgs/commit/cd11f9b61267c5d50ecf75e17007788f8bd3d91f) lndinit: 0.1.5-beta -> 0.1.22-beta
* [`851849e3`](https://github.com/NixOS/nixpkgs/commit/851849e3c6bb8376b870d7292ee1412c54b42acc) vimPlugins.muren-nvim: init at 2023-08-26
* [`5ddc8ccd`](https://github.com/NixOS/nixpkgs/commit/5ddc8ccdc0af1c67ae17e8535f1143a7884e514d) lamdera: 1.3.1 -> 1.3.2
* [`53b356fc`](https://github.com/NixOS/nixpkgs/commit/53b356fcd79884d8f08f56e46ab467512eaeca92) python312Packages.django_5: 5.1.2 -> 5.1.3
* [`c771f151`](https://github.com/NixOS/nixpkgs/commit/c771f151f8bf7e83894f622c99d0a4c469bcb346) cfn-nag: added meta.mainProgram
* [`3b9afaf1`](https://github.com/NixOS/nixpkgs/commit/3b9afaf19cebbc03f907dc90a872f82166cbd5e3) goreleaser: 2.3.2 -> 2.4.4, drop inactive maintainers
* [`519cea42`](https://github.com/NixOS/nixpkgs/commit/519cea4260a1f616181adf58d3fca00e26856575) guile-sdl: mark broken on darwin
* [`0004c3c8`](https://github.com/NixOS/nixpkgs/commit/0004c3c898ea34508594a30cf0b16ab87a83237c) python312Packages.yaspin: fix build, set pyproject = true
* [`abcf5fb9`](https://github.com/NixOS/nixpkgs/commit/abcf5fb9b9439715081b45642deccd7c95ab0b30) maintainer-list: added mathstlouis
* [`9642cf41`](https://github.com/NixOS/nixpkgs/commit/9642cf41060a8fef6a8ed61adf9600accbe1da0c) cfn-nag: added mathstlouis to maintainers
* [`9423fce7`](https://github.com/NixOS/nixpkgs/commit/9423fce738237440115d9b07e1724aee47d4a5b5) element-desktop: 1.11.82 -> 1.11.84
* [`3e885002`](https://github.com/NixOS/nixpkgs/commit/3e8850024d015edd8d4a105c668bd9dc0a3c3425) actionlint: 1.7.3 -> 1.7.4
* [`2a55a31b`](https://github.com/NixOS/nixpkgs/commit/2a55a31be3c1ef661f804aa89537a876f3c3738a) kdePackages: Plasma 6.2.2 -> 6.2.3
* [`4bb99d03`](https://github.com/NixOS/nixpkgs/commit/4bb99d0350cfeb3bad2458d4f2052a74e8a02b33) php{81,82,83,84}Extensions.pdo_dblib: fix broken condition
* [`2a91cc49`](https://github.com/NixOS/nixpkgs/commit/2a91cc49b7d8b857311b0a72a5f8197861638f05) dnscontrol: 4.14.0 -> 4.14.2
* [`31fd3a6f`](https://github.com/NixOS/nixpkgs/commit/31fd3a6fe95deee382055dcc4244c2cfa20ef17b) cocoapods: 1.15.1 -> 1.16.2
* [`3592d2c1`](https://github.com/NixOS/nixpkgs/commit/3592d2c1c29e6c3d437ce37b577c21f85fd0d2fc) nextcloud-client: 3.14.2 -> 3.14.3
* [`3f2bbfd6`](https://github.com/NixOS/nixpkgs/commit/3f2bbfd68b794d0dfa24f2ebd0de99284d5dde51) nixos/openvpn3: add `/etc/openvpn3/configs` to `systemd.tmpfiles`
* [`0044a230`](https://github.com/NixOS/nixpkgs/commit/0044a23026daed7a1b5ee4658d35c1427f57da6c) neatvnc: use clickable meta.homepage link, replace pname with string
* [`2dbcd738`](https://github.com/NixOS/nixpkgs/commit/2dbcd73818222ca6c53093c18c1fac232847fc93) python312Packages.flax: 0.9.0 -> 0.10.1
* [`920eac09`](https://github.com/NixOS/nixpkgs/commit/920eac097f5c355adc0321d44f24032b1faa38a7) gfie: init at 4.2
* [`fd454586`](https://github.com/NixOS/nixpkgs/commit/fd45458624e1c4268142d715726218556859ca8c) libamplsolver: mark cross-compile as broken
* [`2415e261`](https://github.com/NixOS/nixpkgs/commit/2415e26111a91016bfcdc85e2371c18ddb34f449) nixos/pipewire: mention possible integration with pulseaudio
* [`e39c6aba`](https://github.com/NixOS/nixpkgs/commit/e39c6abaacb6d5e4da0da693d748ed59d3e4e975) mmex: 1.6.3 -> 1.8.0
* [`c803ed59`](https://github.com/NixOS/nixpkgs/commit/c803ed5996fb0457e6ddc356e8e499717cbcc211) icloudpd: 1.24.0 -> 1.24.3
* [`d711d8fb`](https://github.com/NixOS/nixpkgs/commit/d711d8fbed8bcfdf715e3e4b40d83a19d10ed80d) python3Packages.srp: 1.0.21 -> 1.0.22
* [`6fc68c21`](https://github.com/NixOS/nixpkgs/commit/6fc68c21e19bf28bbef32533ab30a4399c828659) vscode-extensions.asvetliakov.vscode-neovim: 1.18.13 -> 1.18.14
* [`bbc04afa`](https://github.com/NixOS/nixpkgs/commit/bbc04afa9fcce4ec572708f06878ff4f7276a833) cemu: 2.0-92 -> 2.2
* [`cd31998d`](https://github.com/NixOS/nixpkgs/commit/cd31998dc638930be5a199821257d1737717d6f7) maintainers: change baduhai's name
* [`037d89d1`](https://github.com/NixOS/nixpkgs/commit/037d89d14391df402f64b42ce7cc15880fe67736) kyverno-chainsaw: 0.2.8 -> 0.2.11
* [`37746218`](https://github.com/NixOS/nixpkgs/commit/377462189133351261c27d68439759a4584485ba) meteo-qt: init at 3.4
* [`d2489486`](https://github.com/NixOS/nixpkgs/commit/d24894863c4a6c79e3f8ac753c4055ba3854d34c) python312Packages.markdownify: fix build
* [`b4bdaa19`](https://github.com/NixOS/nixpkgs/commit/b4bdaa19e24400dbfdb2c87e86407f710742a8e6) hof: nixfmt
* [`2a276628`](https://github.com/NixOS/nixpkgs/commit/2a27662845330f07c481baf066053b6b53f5afd8) maintainers: add jhol
* [`c2a6507f`](https://github.com/NixOS/nixpkgs/commit/c2a6507f0591367017d46574884f92493fb01a29) sphinxcontrib-moderncmakedomain init at 3.29.0
* [`408bb50e`](https://github.com/NixOS/nixpkgs/commit/408bb50eb1f0a0404a4b325cef9b4a6e1781d8a3) emacsPackages.org-xlatex: mark as broken without xwidgets
* [`4b4a448a`](https://github.com/NixOS/nixpkgs/commit/4b4a448aa8b46acec19a9ea7042cb1ac7a1a29f0) linuxstopmotion: format with nixpkgs-rfc-style
* [`8d8fb832`](https://github.com/NixOS/nixpkgs/commit/8d8fb832603e955a559b82bc473749a71bf43be2) linuxstopmotion: stop using qt5.mkDerivation
* [`2bd2f80d`](https://github.com/NixOS/nixpkgs/commit/2bd2f80d4a6357410b2fb46b2dfa525b3ebfd1e3) stopmotion: rename from linuxstopmotion
* [`adaa8dad`](https://github.com/NixOS/nixpkgs/commit/adaa8dade54a17cb27e347a06bc30c40563d12c0) stopmotion: 0.8.5 -> 0.8.7
* [`d353f616`](https://github.com/NixOS/nixpkgs/commit/d353f6161f1b303457d35ba9d7b93cd83ae8e5ec) infrastructure-agent: init at 1.57.2
* [`092fef0a`](https://github.com/NixOS/nixpkgs/commit/092fef0ac8b67f8edd3a613c413ffc0bfb6a6786) sidekick: init at 0.6.6
* [`9e9e6c58`](https://github.com/NixOS/nixpkgs/commit/9e9e6c58b75ef05f32fbe947233eefbca400af62) python312Packages.mne-python: unbreak tests
* [`c8df6697`](https://github.com/NixOS/nixpkgs/commit/c8df66973b396186ced7e81f0dd3e475bf77d3b8) xcbuild: look in system toolchain for binaries on `/usr/bin`
* [`7ae8a1e5`](https://github.com/NixOS/nixpkgs/commit/7ae8a1e519de8d316830a73f119c2e19234d7a58) xcbuild: suppress warnings for unknown keys
* [`c6b663c0`](https://github.com/NixOS/nixpkgs/commit/c6b663c00ea7873e56228b0fcac818e87faa4b60) signalbackup-tools: 20241025 -> 20241105-2
* [`1abe027c`](https://github.com/NixOS/nixpkgs/commit/1abe027caad4052ca97bf0eaf1d701f922a25cbb) python312Packages.trimesh: 4.5.1 -> 4.5.2
* [`b68c1144`](https://github.com/NixOS/nixpkgs/commit/b68c1144b0cfe5da73417b878111e217e7cb00e4) python312Packages.pydicom-seg: unbreak tests
* [`012055eb`](https://github.com/NixOS/nixpkgs/commit/012055eb87c6d4aed16deccdcfa5cb335c99005e) systemd-netlogd: init at 1.4.2
* [`54ece522`](https://github.com/NixOS/nixpkgs/commit/54ece522d1a17b07c2a15db8b869056ff9e87d5b) dnsmasq_exporter: build with Go 1.22 for now
* [`86ef6426`](https://github.com/NixOS/nixpkgs/commit/86ef64265ae8307580a89c06e48af2336324dc59) peroxide: build with Go 1.22 for now
* [`2245f840`](https://github.com/NixOS/nixpkgs/commit/2245f840869c1c62ac5227a4a8ce758314f68645) ali: build with Go 1.22 for now
* [`7136dc68`](https://github.com/NixOS/nixpkgs/commit/7136dc6870175f6d0745a7e5a8d8e7a7cb01ba7b) honeytrap: build with Go 1.22 for now
* [`7545cec0`](https://github.com/NixOS/nixpkgs/commit/7545cec01f6dac13768236e107de88fd445343ca) devdash: build with Go 1.22 for now
* [`a4e4e653`](https://github.com/NixOS/nixpkgs/commit/a4e4e65330afb2ecd77d46b13986b0df9513dce5) bettercap: build with Go 1.22 for now
* [`f7a5ca27`](https://github.com/NixOS/nixpkgs/commit/f7a5ca27d855e5f8f7cf27f1d285b70d5d36695f) python311Packages.irc: enable local networking, unbreak on darwin
* [`12d623b9`](https://github.com/NixOS/nixpkgs/commit/12d623b9a89777dba07ed67579d7ba911dd2f85f) berry: fix darwin build
* [`0a8d9266`](https://github.com/NixOS/nixpkgs/commit/0a8d9266d69a2e21c1abb614eaa2acdf3718a097) signalbackup-tools: update to new darwin SDK pattern
* [`265c6a80`](https://github.com/NixOS/nixpkgs/commit/265c6a8046e34560e7486c5ee37dc2bd5ff5e4d0) afuse: fix darwin build
* [`d65243dc`](https://github.com/NixOS/nixpkgs/commit/d65243dcef837233696bedb61e323ca2fd007ecf) nixos/gotosocial: fix failing tests
* [`0d204871`](https://github.com/NixOS/nixpkgs/commit/0d204871a02d071f0a753cef09653bafd0beb635) afuse: replace -> replace-fail
* [`040826a9`](https://github.com/NixOS/nixpkgs/commit/040826a94f4da40261cb7a0383b90627a9c87573) erlang-ls: 0.52.0 -> 1.1.0
* [`b313405a`](https://github.com/NixOS/nixpkgs/commit/b313405a5d18353dd0ce011cee1725e17b7c8756) python312Packages.autopep8: 2.0.4-unstable-2023-10-27 -> 2.3.1
* [`232ece25`](https://github.com/NixOS/nixpkgs/commit/232ece2599ef8541e9cbe3f0da3dce91a40a6c70) maintainers: remove ianmjones
* [`01856f87`](https://github.com/NixOS/nixpkgs/commit/01856f87f67f23720f8bb725d687a7fd7bf2fb60) wl-kbptr: 0.2.1 -> 0.2.3
* [`d19b53a5`](https://github.com/NixOS/nixpkgs/commit/d19b53a5719fad79842768a4322f79a67dd22e44) vidcutter: init at 6.0.5.3
* [`09732d6d`](https://github.com/NixOS/nixpkgs/commit/09732d6d13fbff33c2e0f8deeae0f076a920ffbb) recordbox: init at 0.8.3
* [`fe1a600b`](https://github.com/NixOS/nixpkgs/commit/fe1a600b99704eb18a5009ac36ce216dc3424e64) woomer: init at 0.1.0
* [`ed7052a6`](https://github.com/NixOS/nixpkgs/commit/ed7052a6e23c6a087f3f18d41e600b006daf57d5) prisma-engines: 5.21.1 -> 5.22.0
* [`50962087`](https://github.com/NixOS/nixpkgs/commit/509620877774f4bd9f0306830…
github-actions bot added a commit to aarnphm/whispercpp that referenced this issue Dec 1, 2024
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/[email protected]](https://github.com/NixOS/nixpkgs/compare/518fb6209492468f20b282b5e986549aadf80ef9...ea5a824f194d58bbb52a32efa0f4a18bacbbc3ef)

* [`a182a532`](https://github.com/NixOS/nixpkgs/commit/a182a53243828257018c6ef4c7d2edbe89fd63e5) buildFHSEnv: rewrite env building
* [`baa84c3c`](https://github.com/NixOS/nixpkgs/commit/baa84c3c68321678857d6a0627a8c6b814492b86) nim-2_0: 2.0.10 -> 2.0.12
* [`4f8bbed6`](https://github.com/NixOS/nixpkgs/commit/4f8bbed6ca3f6d232aacb80eacb5c9fb4ad05284) rPackages.alcyon: fix build
* [`affa833b`](https://github.com/NixOS/nixpkgs/commit/affa833b2aebe455a637860da5b3f968c3fcea38) python312Packages.hap-python: refactor
* [`76c8e15a`](https://github.com/NixOS/nixpkgs/commit/76c8e15a8ae9e8df62cdd230491d7fb1a4faa932) ostree: 2024.4 -> 2024.8
* [`64c924e0`](https://github.com/NixOS/nixpkgs/commit/64c924e098fb8c2c2055f81317865fb8602c8c66) edge-runtime: move to by-name
* [`1221b2e0`](https://github.com/NixOS/nixpkgs/commit/1221b2e0daa370561a6b8d48b42d63927880e5bf) edge-runtime: nixfmt
* [`c495d970`](https://github.com/NixOS/nixpkgs/commit/c495d97060a31295c66cfd157b6299fcc61b9a31) edge-runtime: 1.53.4 -> 1.60.1
* [`84bf4842`](https://github.com/NixOS/nixpkgs/commit/84bf48421f7381924b218075110af2b569f2434b) checkov: 3.2.276 -> 3.2.277
* [`25d33b8c`](https://github.com/NixOS/nixpkgs/commit/25d33b8c78e7f99a454cce1c37be65df9d0afcdf) dnsdiag: 2.5.0 -> 2.6.0
* [`40b7674b`](https://github.com/NixOS/nixpkgs/commit/40b7674b98ea79a540908b36c2d72add66a35218) nixos/tests/switchTest: Test no boot loader
* [`1c69b0c0`](https://github.com/NixOS/nixpkgs/commit/1c69b0c0e734568af54cd5d5f21231bd6d5870fa) mutagen: 0.17.1 -> 0.18.0
* [`f0668b48`](https://github.com/NixOS/nixpkgs/commit/f0668b4886f06a09a2be67f0821f472e23a86c55) cargo-sweep: fix build by disabling broken test
* [`c351ae96`](https://github.com/NixOS/nixpkgs/commit/c351ae969d6ffb852e85b362189770e13ce5eda3) cargo-sweep: format using nixfmt
* [`efd6331c`](https://github.com/NixOS/nixpkgs/commit/efd6331c95521d24bc7802fc380af9509cf44a15) pytrainer: unpin python 3.10
* [`a36cf528`](https://github.com/NixOS/nixpkgs/commit/a36cf528f76468419d6e7df22ad652607b21e195) git-fast-export: move to by-name
* [`2ff0c93a`](https://github.com/NixOS/nixpkgs/commit/2ff0c93a65b60a40f12a326f3a98133d1e026be8) git-fast-export: nixfmt
* [`6e66b546`](https://github.com/NixOS/nixpkgs/commit/6e66b546a1e0c6e93426ff7b44afbc2f4705293d) git-fast-export: add passthru.updateScript
* [`a7cda683`](https://github.com/NixOS/nixpkgs/commit/a7cda6835fc042a0a70d3e1983863aad0183d229) nixos/tests/switchTest: Remove spurious dbus reload checks
* [`f92ec1bc`](https://github.com/NixOS/nixpkgs/commit/f92ec1bc93990197895f4ce4bcf29354a738f830) nixos/tests/switchTest: Add test for dbus reloading
* [`5d9ac946`](https://github.com/NixOS/nixpkgs/commit/5d9ac94606923cadc983c508dc065213e64e055f) nixos/activation-script: Make `installBootLoader` default a script
* [`5dee69a2`](https://github.com/NixOS/nixpkgs/commit/5dee69a240e48f250918fd57e91e4a66910909d2) git-fast-export: 221024 -> 231118
* [`d7b5ff5f`](https://github.com/NixOS/nixpkgs/commit/d7b5ff5f6822365392086f7f1ddc5edaa583c01d) maintainers: add keksgesicht
* [`20ae63db`](https://github.com/NixOS/nixpkgs/commit/20ae63db781cab9b8ebe2597e8cfd4c87efe405a) tuxedo-drivers: add myself and a few others as maintainers
* [`102e53fb`](https://github.com/NixOS/nixpkgs/commit/102e53fbd4bd85895a84792d4b576c275632b36e) tuxedo-drivers: update build commands
* [`c6cb939c`](https://github.com/NixOS/nixpkgs/commit/c6cb939c84e4efa0b5b11d99358cb472cd807ee3) tuxedo-drivers: 4.7.0 -> 4.9.0
* [`6f05c66e`](https://github.com/NixOS/nixpkgs/commit/6f05c66e17f7f5ff2002de488a0f037badb3ef92) python312Packages.pymc: 5.17.0 -> 5.18.0
* [`7d3596a9`](https://github.com/NixOS/nixpkgs/commit/7d3596a9328e0edfb2dedcee4f82e3c0804252fa) gromacs: 2024.3 -> 2024.4
* [`cc3c24dd`](https://github.com/NixOS/nixpkgs/commit/cc3c24dde3583b44b0eca9418446b33270c15b95) vimPlugins.avante-nvim: 2024-10-18 -> 2024-11-04
* [`0a0e61b0`](https://github.com/NixOS/nixpkgs/commit/0a0e61b073536683e611506ceec0230f526efd15) apachetomcatscanner: add missing dependencies
* [`08790dff`](https://github.com/NixOS/nixpkgs/commit/08790dff7907b73811efbdc3eef8c4662b8c9b68) xorg.libAppleWM: constrain to darwin targets
* [`7819e574`](https://github.com/NixOS/nixpkgs/commit/7819e57453b6f2b86228d4dbae3ee0f00ba72814) pylyzer: 0.0.68 -> 0.0.69
* [`179f1365`](https://github.com/NixOS/nixpkgs/commit/179f1365e022d5fb02144a2d3f4e7b4dbacbc990) rPackages.bgx: fix build
* [`c0aef2b9`](https://github.com/NixOS/nixpkgs/commit/c0aef2b9dc49dbc696ee2b68844a0427a63b14a5) python312Packages.tencentcloud-sdk-python: 3.0.1257 -> 3.0.1259
* [`1c37a249`](https://github.com/NixOS/nixpkgs/commit/1c37a2492c17be2c54f2c35f181871fedebc8125) rPackages.resultant: fix build
* [`8b274c80`](https://github.com/NixOS/nixpkgs/commit/8b274c8054e5f56c839f6efc6dbf38bc4074fdf0) iverilog: Update homepage link
* [`3618ec6a`](https://github.com/NixOS/nixpkgs/commit/3618ec6a0ad2cd68599694eb11b1f400e68c4f20) sile: nixfmt; move to pkgs/by-name
* [`0a5b0c8c`](https://github.com/NixOS/nixpkgs/commit/0a5b0c8cd928ebe29f99f27927b94f6030f4e727) sile: don't use with lib; in meta
* [`fca1f18d`](https://github.com/NixOS/nixpkgs/commit/fca1f18de9448d0861879ac454b5382bc32d221f) sile: use finalAttrs.finalPackage when needed
* [`9f1a0fde`](https://github.com/NixOS/nixpkgs/commit/9f1a0fde5c45c5017c36832bc4577c88a86e0caf) sile: allow easier override of luaEnv
* [`e37658c6`](https://github.com/NixOS/nixpkgs/commit/e37658c6f144b627231cce1be5b12918bb728a01) sile: reorder callPackage arguments like in expression
* [`6b90fbc9`](https://github.com/NixOS/nixpkgs/commit/6b90fbc91f0aec54d30d5e6756392223eb8afbc5) sile: use lib.optionals for Darwin specific inputs
* [`caa10b05`](https://github.com/NixOS/nixpkgs/commit/caa10b055f92d4bfc8da3e4a71fb7264d715c492) nix: update fallback paths automatically
* [`fbd18886`](https://github.com/NixOS/nixpkgs/commit/fbd188864020b9a1226d35b9df1fe465e1f378c1) re-add libsandbox
* [`e2a21bdd`](https://github.com/NixOS/nixpkgs/commit/e2a21bddefb8cbd10710d9dcd4a2293d01325e27) python312Packages.openusd: add gador as co-maintainer
* [`6df0b10d`](https://github.com/NixOS/nixpkgs/commit/6df0b10df6903be10245355ef35dd8435084bd95) Revert "less: Fix withSecure regression"
* [`b2b573e3`](https://github.com/NixOS/nixpkgs/commit/b2b573e39ac0644730c4dc8f04e2b4d152a2c81e) maintainers: update entry for kloenk
* [`5a37bac4`](https://github.com/NixOS/nixpkgs/commit/5a37bac414ff58ca4d36ed9fc4642035d4597b7d) sile: 0.14.17 -> 0.15.5
* [`9c92ae59`](https://github.com/NixOS/nixpkgs/commit/9c92ae59f1931db1ed47acaf793846b964d844d7) linuxPackages.apfs: 0.3.11 -> 0.3.12
* [`c06d108c`](https://github.com/NixOS/nixpkgs/commit/c06d108c276991ee56c2cca9a84d813a7c66b1c1) SDL_gpu: Format using nixfmt-rfc-style
* [`c4edf939`](https://github.com/NixOS/nixpkgs/commit/c4edf939886aa9e61a9e266c776056b9f5d79cbc) Cleanup helsinki maintainer ([NixOS/nixpkgs⁠#353611](https://togithub.com/NixOS/nixpkgs/issues/353611))
* [`083d0095`](https://github.com/NixOS/nixpkgs/commit/083d0095e65a6608d3cb8375d72d0e38a10b512e) SDL_gpu: Fix build on clang 16
* [`0d04728e`](https://github.com/NixOS/nixpkgs/commit/0d04728ee39040de5b6dd0eb1711cc3d100de3cb) nixos/conduit: wait for network-online.target
* [`54d6c4b1`](https://github.com/NixOS/nixpkgs/commit/54d6c4b1547020151a9cf9a4cedf3645a3dcbcc6) earbuds: init at 0.1.9-unstable-2024-06-28
* [`bdef0396`](https://github.com/NixOS/nixpkgs/commit/bdef0396f569727e127977acc56b9fd5c6eb3832) florist: init at 24.2
* [`cc275e64`](https://github.com/NixOS/nixpkgs/commit/cc275e641f1a0fb82616e84817bf21b65650767d) python312Packages.h5py-mpi: remove unused patch
* [`a0df5569`](https://github.com/NixOS/nixpkgs/commit/a0df55691923a6c542a7b33f61ad289850863e34) python312Packages.h5py-mpi: fix build by relaxing mpi4py dependency
* [`1fe651e7`](https://github.com/NixOS/nixpkgs/commit/1fe651e76ca98dee8fb10f715cb2c9312d8f4714) monolith: add nix update script
* [`fa58667f`](https://github.com/NixOS/nixpkgs/commit/fa58667f93ac8784d675618123b5d919ac0d0886) openmolcas: fix shebangs in python scripts
* [`2a64a9a2`](https://github.com/NixOS/nixpkgs/commit/2a64a9a22a7540182b64b90728b0ac51cffd5145) aws-assume-role: move to by-name
* [`45fd66c2`](https://github.com/NixOS/nixpkgs/commit/45fd66c2381cf16805ddec305b551dd82da712af) aws-assume-role: nixfmt
* [`e7e66352`](https://github.com/NixOS/nixpkgs/commit/e7e66352e9c5f525de6dd44c4d463f472ad2ca06) cbconvert: init at 1.0.4
* [`a0b8a795`](https://github.com/NixOS/nixpkgs/commit/a0b8a795a6e33aaf3a88e4c82f43be359f796d1f) aws-assume-role: fix build
* [`7149d521`](https://github.com/NixOS/nixpkgs/commit/7149d521b642740baff075ff03c73e1cfcf98d44) mimir: 2.14.0 -> 2.14.1
* [`0d9236eb`](https://github.com/NixOS/nixpkgs/commit/0d9236eb1807ba08dbbb4f2943ffa61c5b305137) python312Packages.pygtail: 0.8.0 -> 0.14.0
* [`6b659580`](https://github.com/NixOS/nixpkgs/commit/6b6595801400dc24ad9242c8891409a895347902) python312Packages.pygtail: refactor
* [`24a2d2a2`](https://github.com/NixOS/nixpkgs/commit/24a2d2a261aa8d030728bb70581ab3a3f7890846) tree-sitter-grammars: add river ([NixOS/nixpkgs⁠#347752](https://togithub.com/NixOS/nixpkgs/issues/347752))
* [`478934a2`](https://github.com/NixOS/nixpkgs/commit/478934a2a5e314eaf15913c89b13a51ebb4c8e33) matugen: use new darwin sdk pattern
* [`0376c8fc`](https://github.com/NixOS/nixpkgs/commit/0376c8fc98e1e9a46824ced4573567524182a5a8) python312Packages.ush: 3.1.0 -> 4.1.0
* [`9f2b4ca0`](https://github.com/NixOS/nixpkgs/commit/9f2b4ca03cee23bc46719c9c87e7382a102ccf6d) python312Packages.ush: switch to pypa builder
* [`a1f1c849`](https://github.com/NixOS/nixpkgs/commit/a1f1c849ad9d67ad0151f610e2955b43ffdfd7e8) vscode-extensions.antyos.openscad 1.1.1 → 1.3.1
* [`7cbc9118`](https://github.com/NixOS/nixpkgs/commit/7cbc9118127ab4501c88252d129bc09b53537569) gossip: 0.11.2 -> 0.12.0
* [`3cc9bcbf`](https://github.com/NixOS/nixpkgs/commit/3cc9bcbf33d3d3af63f874d5f90afa1bdf5a1708) gossip: pin to ffmpeg 6
* [`74561ffe`](https://github.com/NixOS/nixpkgs/commit/74561ffeac40631621af34a6d469c6571a8cdf23) python3Packages.torch-tb-profiler: 0.3.1 -> 0.4.0
* [`64a6e829`](https://github.com/NixOS/nixpkgs/commit/64a6e8292aa39a664743d20b520173320dcea6bc) nixos/acme: Set /var/lib/acme permissions to 755
* [`ff427fbc`](https://github.com/NixOS/nixpkgs/commit/ff427fbc30c42fe270f1ac029320be2d13bff8ca) zed-editor: 0.159.7 -> 0.159.10
* [`b0519b43`](https://github.com/NixOS/nixpkgs/commit/b0519b43188f7b08e14f9b81bae2cdda730673c6) mariadb: 10.5.27, 10.6.20, 10.11.10, 11.4.4
* [`4457d955`](https://github.com/NixOS/nixpkgs/commit/4457d955d01a4f8e0187448063e146bc36e4745f) yabai: refactor to new sdk pattern
* [`88eb0fcc`](https://github.com/NixOS/nixpkgs/commit/88eb0fcca4d46cb4f2211394b213d6175add582e) yabai: switch to apple-sdk_15
* [`b2607dee`](https://github.com/NixOS/nixpkgs/commit/b2607dee162817714049169785310ea52684cb0f) yabai: add versionCheckHook
* [`550d4a2a`](https://github.com/NixOS/nixpkgs/commit/550d4a2af43d74f0fded665f01f3b4651af835d7) yabai: modernize
* [`af9131fa`](https://github.com/NixOS/nixpkgs/commit/af9131fa6de1bd184ad5e8d20a4034c425d3b7d2) yabai: 7.1.4 -> 7.1.5
* [`2610fc98`](https://github.com/NixOS/nixpkgs/commit/2610fc983ab0d678a0914a3b61367a4ead11777b) objfw: 1.1.7 -> 1.2
* [`45bb433c`](https://github.com/NixOS/nixpkgs/commit/45bb433c54e34ce846f5bfcaee42c6359ad56ca0) paperless-ngx: 2.13.2 -> 2.13.4
* [`46cce423`](https://github.com/NixOS/nixpkgs/commit/46cce423ec19bb9418a9c2fdcdbec058965cbdb6) atkinson-monolegible:init at 0-unstable-2023-02-27
* [`f9c15bce`](https://github.com/NixOS/nixpkgs/commit/f9c15bce32490d67e25aa14fb5a876c65b2f681d) lightningcss: 1.27.0 → 1.28.0
* [`e15b1502`](https://github.com/NixOS/nixpkgs/commit/e15b1502f8540d95ebea6d0d8c37e89e4f9423d9) fastfetch: 2.28.0 -> 2.29.0
* [`9a4e945c`](https://github.com/NixOS/nixpkgs/commit/9a4e945cebb27a363a4d150affdade25258d3207) nixos/tests/forgejo: fix after git v2.47 bump
* [`9aeabf40`](https://github.com/NixOS/nixpkgs/commit/9aeabf401af8aa70f73cd9713ec5c544f985f697) yt-dlp: 2024.10.22 -> 2024.11.4, use constant changlog URL
* [`4b13779f`](https://github.com/NixOS/nixpkgs/commit/4b13779f33214e035deeda6097b5b9db019e48a0) python3Packages.subliminal: mark as not broken
* [`e2dac786`](https://github.com/NixOS/nixpkgs/commit/e2dac786f09eb7374c5c225a49b8a3787e3f166b) linux-wallpaperengine: init at 0-unstable-2024-10-13
* [`88e1c5d4`](https://github.com/NixOS/nixpkgs/commit/88e1c5d40464bb8a0b329efb77e86b963c5e97e8) plandex-server: add git to path
* [`5058251d`](https://github.com/NixOS/nixpkgs/commit/5058251dd857233ac0e7f191583d957400d87696) CONTRIBUTING.md: Add note about nixpkgs-merge-bot restricted authors
* [`5e5192e6`](https://github.com/NixOS/nixpkgs/commit/5e5192e6c12a630e592e38b2a119933463b8b8cb) taisei: move to pkgs/by-name
* [`daf3bcfb`](https://github.com/NixOS/nixpkgs/commit/daf3bcfbd363375a492442d0e57c1e8318594302) taisei: format with nixfmt
* [`260b34e1`](https://github.com/NixOS/nixpkgs/commit/260b34e1504d91a996ac4c3f6f24bffbbc211f59) butterfly: init at 2.2.1
* [`e8fd2805`](https://github.com/NixOS/nixpkgs/commit/e8fd280532ab2bd7d88679db92760cd06748faf4) maid: update dependencies
* [`6d3cc742`](https://github.com/NixOS/nixpkgs/commit/6d3cc7422121699491d4368c153c2928d49d9bc8) spnavcfg: add X11 to the build inputs
* [`1ffa3b64`](https://github.com/NixOS/nixpkgs/commit/1ffa3b644df17a5ec4fa18bfeac36022c7e2e970) taisei: refactor
* [`fb382172`](https://github.com/NixOS/nixpkgs/commit/fb3821722e9cb3311cdcff40e6d89595c7e9c90b) taisei: add Gliczy as maintainer
* [`0e68d7bd`](https://github.com/NixOS/nixpkgs/commit/0e68d7bdfb1640f1053cda5fd06be862520064dd) lightningcss: enable aarch64-linux builds and set platform to all
* [`dd086ca4`](https://github.com/NixOS/nixpkgs/commit/dd086ca402002aa4516640774072ec6ee1ecaa28) msi-ec: 0-unstable-2024-09-19 -> 0-unstable-2024-11-04
* [`2e99cc48`](https://github.com/NixOS/nixpkgs/commit/2e99cc48c7715a036b89f93c3dd297de4b386368) transmission_4: update for the new SDK pattern on Darwin
* [`174ef9b8`](https://github.com/NixOS/nixpkgs/commit/174ef9b84ac4286e298d9283f5a2ca27baafb258) transmission_4: fix build on Darwin
* [`26c3a41f`](https://github.com/NixOS/nixpkgs/commit/26c3a41f6bbcd14e0e94da776d7f07ebfef62bea) python312Packages.moto: add (trivial) `sns` optional dependency
* [`37226af6`](https://github.com/NixOS/nixpkgs/commit/37226af6e86f5046ae4d11d959dfc0b51be9a32a) python312Packages.great-expectations: init at 1.2.1
* [`137f3729`](https://github.com/NixOS/nixpkgs/commit/137f3729455cee4ee75ac38c7b18b936a3e94db8) vimPlugins.lze: 0.1.4 -> 0.4.4 ([NixOS/nixpkgs⁠#353109](https://togithub.com/NixOS/nixpkgs/issues/353109))
* [`ae7f50cd`](https://github.com/NixOS/nixpkgs/commit/ae7f50cd7d4b8a1bc0d65955eced688f7393d6df) fritz-exporter: add attrs to relaxed deps
* [`e2210c0e`](https://github.com/NixOS/nixpkgs/commit/e2210c0ebc861bd60710ea4008316297411d3d6a) dhcpcd:  10.0.6 -> 10.1.0
* [`6c5287eb`](https://github.com/NixOS/nixpkgs/commit/6c5287eb04e3a7eeca944e75afd7d66c8086eeb7) maintainers: add vtimofeenko to maintainer list
* [`0ea31d13`](https://github.com/NixOS/nixpkgs/commit/0ea31d130cc50ed6bb62e201c24705e998bd0547) alacritty: use new darwin SDK pattern
* [`57b696fa`](https://github.com/NixOS/nixpkgs/commit/57b696fa7d98ee756f970008f29e6ad741b2d030) hilbish: 2.3.2 -> 2.3.3
* [`ccda0ce1`](https://github.com/NixOS/nixpkgs/commit/ccda0ce11855ffabf1e7629fdad0956cb1f6eea3) python312Packages.aiortm: 0.9.22 -> 0.9.24
* [`a475aebc`](https://github.com/NixOS/nixpkgs/commit/a475aebcaacc282141b7c6b875a6185828cd0f31) python312Packages.bc-detect-secrets: 1.5.17 -> 1.5.18
* [`560626d0`](https://github.com/NixOS/nixpkgs/commit/560626d0d617069bee5f0609257eb5f02b3eba07) python312Packages.mando: 0.7.1 -> 0.8.2 ([NixOS/nixpkgs⁠#352777](https://togithub.com/NixOS/nixpkgs/issues/352777))
* [`0a4aaa9d`](https://github.com/NixOS/nixpkgs/commit/0a4aaa9d9a73735890cc7dca8db14c1aea0cb189) pkgs/stdenv/freebsd: update x86_64-unknown-freebsd bootstrap-files
* [`05e26cb3`](https://github.com/NixOS/nixpkgs/commit/05e26cb37392ea4f706b3220ef7b017a7a4aa57d) python312Packages.xmlschema: 3.4.2 -> 3.4.3 ([NixOS/nixpkgs⁠#352700](https://togithub.com/NixOS/nixpkgs/issues/352700))
* [`4f9f5816`](https://github.com/NixOS/nixpkgs/commit/4f9f5816d3620a7347448e638993c9d01d63eca3) python312Packages.bloodyad: 2.0.7 -> 2.0.8
* [`6760f0a7`](https://github.com/NixOS/nixpkgs/commit/6760f0a702b1fa562be952451e4cad3ddece665e) brave: fix qt theming ([NixOS/nixpkgs⁠#352667](https://togithub.com/NixOS/nixpkgs/issues/352667))
* [`b818e0cb`](https://github.com/NixOS/nixpkgs/commit/b818e0cbb858871397a7c5a07168c15e0119b602) docker-buildx: 0.17.1 -> 0.18.0 ([NixOS/nixpkgs⁠#352575](https://togithub.com/NixOS/nixpkgs/issues/352575))
* [`6f42eff1`](https://github.com/NixOS/nixpkgs/commit/6f42eff1defa62cd751cba0988069b9e08dc475f) ruby_3_2: 3.2.4 -> 3.2.5 ([NixOS/nixpkgs⁠#352560](https://togithub.com/NixOS/nixpkgs/issues/352560))
* [`23fd859f`](https://github.com/NixOS/nixpkgs/commit/23fd859f452bc1e6050b88084b5203d5ab33c96f) taisei: 1.3.2 -> 1.4.2
* [`0bd69ba7`](https://github.com/NixOS/nixpkgs/commit/0bd69ba761886624040c3d16c90ec95dca49d941) pizauth: fix build on darwin
* [`bdf04401`](https://github.com/NixOS/nixpkgs/commit/bdf044013a681ead5978087cf2bd2ecf48b9a29d) vte: 0.78.0 -> 0.78.1, fix darwin build
* [`ce8581c2`](https://github.com/NixOS/nixpkgs/commit/ce8581c206a1583f84177eae23dad7d6fd25a55f) python312Packages.fastapi-sso: 0.15.0 -> 0.17.0
* [`525386d0`](https://github.com/NixOS/nixpkgs/commit/525386d0eb4bdca9157e914e64181e9dc0e25ef2) python312Packages.monzopy: 1.3.2 -> 1.4.2
* [`254bf2a3`](https://github.com/NixOS/nixpkgs/commit/254bf2a34bc57849aefe0c438b6c00f30192368a) rio: fix darwin build by providing libutil
* [`224709bb`](https://github.com/NixOS/nixpkgs/commit/224709bbf01f39ba5137d38db8257f8a8ba8a948) rio: format with nixfmt-rfc-style
* [`982d526b`](https://github.com/NixOS/nixpkgs/commit/982d526b78a70834bf3df0675cdfef86ab1dba45) rio: use apple-sdk_11 on x86_64 too
* [`12437967`](https://github.com/NixOS/nixpkgs/commit/12437967ee8ca9a96576eb9e33462381e8913266) vector: readd missing mig command on darwin
* [`132023e2`](https://github.com/NixOS/nixpkgs/commit/132023e223405a165edac815261a56132d36d74b) python312Packages.appimage: init at 1.0.0
* [`a19f263b`](https://github.com/NixOS/nixpkgs/commit/a19f263bccb947c5bcd1f77902424ab9cb43202e) ssh-mitm: 4.1.1 -> 5.0.0
* [`2748fb9a`](https://github.com/NixOS/nixpkgs/commit/2748fb9a0b7cd06bba887ceb2c1cdae4855b7deb) vimPlugins.blink-cmp: 0.5.0 -> 0.5.1
* [`6d0030ad`](https://github.com/NixOS/nixpkgs/commit/6d0030ad09fa3ff485d54a7892807ca65cc556d9) rPackages.scorematchingad: fixed build
* [`c4c7d040`](https://github.com/NixOS/nixpkgs/commit/c4c7d040109e6b663782d28921d3a63654e13678) rPackages.timeless: fixed build
* [`3cd91c00`](https://github.com/NixOS/nixpkgs/commit/3cd91c00ba9e2428b4f83953428d17af5a1cdb0a) rPackages.ravetools: fixed build
* [`b975612e`](https://github.com/NixOS/nixpkgs/commit/b975612ef13f177db2d8b093b055e87f7c121c55) python312Packages.django-haystack: disable tests on darwin
* [`7d3e3f0d`](https://github.com/NixOS/nixpkgs/commit/7d3e3f0d6161c6bac8471bb9eefa6ae46b0dadc3) python312Packages.pyfxa: fix build, add missing dependencies
* [`f5048d4a`](https://github.com/NixOS/nixpkgs/commit/f5048d4a6daf569c3e8cf8b3f6a36725a1b0f0f2) python312Packages.django-silk: 5.2.0 -> 5.3.0
* [`87447256`](https://github.com/NixOS/nixpkgs/commit/87447256cd38dc4ec398e6b2a55ea40b58a4f1e4) obsidian: 1.7.4 -> 1.7.5
* [`b4832813`](https://github.com/NixOS/nixpkgs/commit/b4832813864c4d7e84f3cbeed6d6061013c6dc4f) empty-epsilon: 2024.06.20 -> 2024.08.09
* [`d8aeca87`](https://github.com/NixOS/nixpkgs/commit/d8aeca87e695a8e4cae869e800b7f897c2d43e7b) obsidian: use magick instead of convert
* [`5b136316`](https://github.com/NixOS/nixpkgs/commit/5b136316aacadd0447dc24ba04c449d287ca8cea) pkgsi686Linux.swtpm: pull upstream 64-bit file api fix
* [`9904e239`](https://github.com/NixOS/nixpkgs/commit/9904e2396682dcf955b6795152ddb4edefe6ba72) goldendict-ng: 24.09.0 -> 24.09.1
* [`a685fde6`](https://github.com/NixOS/nixpkgs/commit/a685fde6db96c5cc91484b123e71bb514030ff23) bruno: switch to apple-sdk_11
* [`3c1f559d`](https://github.com/NixOS/nixpkgs/commit/3c1f559d4f7efa8be0259bf2f97adc80f6bffb3e) wakapi: 2.12.1 -> 2.12.2
* [`7c69bb5c`](https://github.com/NixOS/nixpkgs/commit/7c69bb5c155da045dfe8e77b02bdd94b3df035f6) aces-container: fix darwin build
* [`9da04cc7`](https://github.com/NixOS/nixpkgs/commit/9da04cc7dbadb156efa0aeba2e8d0f3fb75a874b) afuse: format
* [`9de9d365`](https://github.com/NixOS/nixpkgs/commit/9de9d365273527d9e96a2ecc3c2233776642a893) capstone: 5.0.1 -> 5.0.3
* [`02f20000`](https://github.com/NixOS/nixpkgs/commit/02f20000a25fd19ddf49c0915496285d44cd5dc5) cctools: set Darwin team as maintainers
* [`e7d6ea8c`](https://github.com/NixOS/nixpkgs/commit/e7d6ea8ca61cd654dd8a5a5087ad3925a0560299) ld64: set Darwin team as maintainers
* [`f225300b`](https://github.com/NixOS/nixpkgs/commit/f225300be4c95a1b03031e5522f389b9ba42a152) aribb25: format
* [`2cc02eca`](https://github.com/NixOS/nixpkgs/commit/2cc02eca4defd10db8e770bf9204bc5688c89d27) aribb25: remove xcbuild
* [`239ef2ff`](https://github.com/NixOS/nixpkgs/commit/239ef2ff2d89e2f164b485f72a50ff01866f9d25) firefox-unwrapped: 132.0 -> 132.0.1
* [`29342f3a`](https://github.com/NixOS/nixpkgs/commit/29342f3a479d57d70379951c011e7a3904f5fb06) bacon: 3.0.0 -> 3.2.0
* [`3e9783d8`](https://github.com/NixOS/nixpkgs/commit/3e9783d8cc60378d1a474032343c5cede617bc2b) firefox-bin-unwrapped: 132.0 -> 132.0.1
* [`37058d40`](https://github.com/NixOS/nixpkgs/commit/37058d400c5f5161da1535bbf74c77b8722c49a0) cosmic-edit: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`ff17208a`](https://github.com/NixOS/nixpkgs/commit/ff17208a821a012ca8c29902d98f631f0286da03) cfn-nag: fix gemfile so that binaries are generated
* [`c9c80336`](https://github.com/NixOS/nixpkgs/commit/c9c80336d46ca6c7e90d4de1ff1e583a4cac5fc6) upwork: 5.8.0.33 -> 5.8.0.35
* [`d42d2761`](https://github.com/NixOS/nixpkgs/commit/d42d2761923ecf55fd4932f7524507cb1e375825) discord: bump all versions
* [`dc83bfd6`](https://github.com/NixOS/nixpkgs/commit/dc83bfd616a47a54921556a117561ebdef2fd1af) cosmic-term: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`7495125f`](https://github.com/NixOS/nixpkgs/commit/7495125f91eaf57f565196c2183c3be3b670d8cf) bat: switch to apple-sdk_11
* [`bda767ef`](https://github.com/NixOS/nixpkgs/commit/bda767efc949a2d50ad48b7b14d1524ce59f68d7) lsd: switch to apple-sdk_11
* [`2aa42ec6`](https://github.com/NixOS/nixpkgs/commit/2aa42ec64465970a2dd12b2e6e83a168c599fea7) delta: switch to apple-sdk_11
* [`580741f0`](https://github.com/NixOS/nixpkgs/commit/580741f0fa29e698ee6b88af35b917e1e3c00ea8) git-interactive-rebase-tool: switch to apple-sdk_11
* [`dbcea082`](https://github.com/NixOS/nixpkgs/commit/dbcea0828a0865b89534a81f1e3df3f5ea780a9c) vimv-rs: switch to apple-sdk_11
* [`8e8f6c00`](https://github.com/NixOS/nixpkgs/commit/8e8f6c00e85cf1beb457917ccd9a14d064f4bd41) ripgrep: switch to apple-sdk_11
* [`0ae04baf`](https://github.com/NixOS/nixpkgs/commit/0ae04baf296e7f569347567846951666d194bfe6) granted: 0.35.2 -> 0.36.0
* [`e08f1da4`](https://github.com/NixOS/nixpkgs/commit/e08f1da4a653b69b42e3dd80362a6748e1d1538c) asleap: format
* [`7c1cc43d`](https://github.com/NixOS/nixpkgs/commit/7c1cc43d50ec4d51004ffa815341ab4a33010730) asleap: modernize
* [`29145be6`](https://github.com/NixOS/nixpkgs/commit/29145be6a7900733f43b8dc219f4b755603a1018) asleap: add meta.platforms
* [`67c5af53`](https://github.com/NixOS/nixpkgs/commit/67c5af53ba46f760b42bd25eeec7e512e1420b0e) asleap: move to by-name
* [`8ec0aa7c`](https://github.com/NixOS/nixpkgs/commit/8ec0aa7cb6b010f57be015b6633e2862271f2e08) aribb25: fix darwin
* [`3de54e3d`](https://github.com/NixOS/nixpkgs/commit/3de54e3d7408cc69ac80a8668edfcdb7986ca4f3) ats2: format
* [`f4f2eb89`](https://github.com/NixOS/nixpkgs/commit/f4f2eb89bf4a6ba7bf13760893c69a3ca62127c7) ats2: fix darwin build
* [`6bd632f1`](https://github.com/NixOS/nixpkgs/commit/6bd632f1646c3ee798e2e09c9fc3ad265436e3f8) ats2: move to by-name
* [`bab7ef30`](https://github.com/NixOS/nixpkgs/commit/bab7ef307cb11e2d2dc9b9ddf2d1de68f220ed45) pythonImportsCheckHook: lint with ShellCheck
* [`ccb418b6`](https://github.com/NixOS/nixpkgs/commit/ccb418b69938ebdac9337baa9cdceeb43b3497cd) pythonNamespacesHook: lint with ShellCheck
* [`e4f2f9dd`](https://github.com/NixOS/nixpkgs/commit/e4f2f9dd22db433d54c9c3e25fc6cee6c3471d09) pythonOutputDistHook: lint with ShellCheck
* [`3a79bc3a`](https://github.com/NixOS/nixpkgs/commit/3a79bc3aee323c79b534cb5ca80d85daf60b4182) pythonRelaxDepsHook: handle attributes `__structuredAttrs`-agnostically
* [`29c08ada`](https://github.com/NixOS/nixpkgs/commit/29c08adae171f1c273a0a15c00068205a9965bf2) pythonRelaxDepsHook: lint with ShellCheck
* [`65293f42`](https://github.com/NixOS/nixpkgs/commit/65293f424779e4df5d892e955dd03cf8d0ed84b0) pythonRemoveTestDirHook: lint with ShellCheck
* [`e32457af`](https://github.com/NixOS/nixpkgs/commit/e32457af0c9de65a4d3f57afd8b4c238da65d07a) setuptoolsRustHook: lint with ShellCheck
* [`6597b74f`](https://github.com/NixOS/nixpkgs/commit/6597b74fea10a79f09ef3fbcf02620e238992845) pypaBuildHook.tests: modernize
* [`215b3023`](https://github.com/NixOS/nixpkgs/commit/215b30238e606155f93af78d877f56a42795cfd5) spacebar: format
* [`b909deee`](https://github.com/NixOS/nixpkgs/commit/b909deee7fd9682cb4584e727e2fb3b3348ddc99) spacebar: switch to apple-sdk_12
* [`18176d9f`](https://github.com/NixOS/nixpkgs/commit/18176d9f116ffcae457f9a4b4a339e30f5c7e775) spacebar: move to by-name
* [`ddc51f70`](https://github.com/NixOS/nixpkgs/commit/ddc51f709f0a84fa78231e56b5b15e98da620afa) home-assistant-custom-components.prometheus_sensor: 1.1.0 -> 1.1.2
* [`5955b4fe`](https://github.com/NixOS/nixpkgs/commit/5955b4feac7f20d4a271a44c05b244d026d5818c) cargo-deadlinks: fix build
* [`aa689c67`](https://github.com/NixOS/nixpkgs/commit/aa689c679c90ea9a84c99cfb1ef5a7ab4ddbbf9b) dialect: 2.4.2 -> 2.5.0 ([NixOS/nixpkgs⁠#353294](https://togithub.com/NixOS/nixpkgs/issues/353294))
* [`3aff222f`](https://github.com/NixOS/nixpkgs/commit/3aff222fd7ab412247a162ad2d8a5f5e71d0e156) berry: format
* [`483eb12a`](https://github.com/NixOS/nixpkgs/commit/483eb12ac9a3b137c730c927a7a1929e152cc6fc) snowflake-cli: init at 3.1.0
* [`75943b09`](https://github.com/NixOS/nixpkgs/commit/75943b097172cdeae16c934471dafd28a9bf23aa) linuxPackages.isgx: mark as broken for kernels >= 6.4
* [`9ea79aff`](https://github.com/NixOS/nixpkgs/commit/9ea79affa90e22979324ffb377203add21a41ae6) nixos/profiles/minimal: remove programs.ssh.setXAuthLocation
* [`ae839936`](https://github.com/NixOS/nixpkgs/commit/ae839936d9cd209767175dfa498db283812f2976) home-assistant-custom-lovelace-modules.universal-remote-card: 4.1.2 -> 4.1.3
* [`476d7434`](https://github.com/NixOS/nixpkgs/commit/476d7434dea6ed1404b425cfdc5034916894f010) vector: format with nixfmt-rfc-style
* [`3f68a9fc`](https://github.com/NixOS/nixpkgs/commit/3f68a9fca12e9c7881cee68aada847c7a99dbd37) python312Packages.tokenizers: 0.20.1 -> 0.20.2
* [`2a27e905`](https://github.com/NixOS/nixpkgs/commit/2a27e9054cb808e21e05fe819026a48a63f9a77a) qt6.qtdeclarative: backport a patch fixing crashes in Kirigami apps
* [`b048be05`](https://github.com/NixOS/nixpkgs/commit/b048be052ccff215e125b9fbef825f296dcbe599) Reapply "less: Fix withSecure regression"
* [`99ad7e76`](https://github.com/NixOS/nixpkgs/commit/99ad7e764915be4b8261c75014c0409e5b916245) bant: add passthru.updateScript
* [`c63dfcd3`](https://github.com/NixOS/nixpkgs/commit/c63dfcd3bb0995ad67e43fa8d9d1da65851ccfe3) bant: 0.1.7 -> 0.1.8
* [`73befd55`](https://github.com/NixOS/nixpkgs/commit/73befd559eabd53c289e21364c39d01eb0a6dea6) python312Packages.sagemaker: relax attrs dependency to fix build
* [`7614e2c6`](https://github.com/NixOS/nixpkgs/commit/7614e2c62f4a0ccf70359e4af73647407b6e4338) yalc: migrate from nodePackages
* [`a10bcc54`](https://github.com/NixOS/nixpkgs/commit/a10bcc549a614afd0f41dc1f5abfe5dd83ab83a4) swayosd: 0-unstable-2024-04-15 -> 0.1.0
* [`18ea4d34`](https://github.com/NixOS/nixpkgs/commit/18ea4d347856280975d37fc035c31a4f1cc93f24) rapidjson: remove uses of `with`
* [`1ca7aa23`](https://github.com/NixOS/nixpkgs/commit/1ca7aa23333dd594f4e072948badbce316b282a2) jetbrains-toolbox: add update script
* [`a614e900`](https://github.com/NixOS/nixpkgs/commit/a614e9006e01c0c05769eb1062d39ab9ae6101e0) jetbrains-toolbox: 2.4.1.32573 -> 2.5.1.34629
* [`00a0b29d`](https://github.com/NixOS/nixpkgs/commit/00a0b29d983df98bed781ae4f531ea6fc41d4d86) lunatask: nixfmt
* [`e3c59b5a`](https://github.com/NixOS/nixpkgs/commit/e3c59b5a49ce61fd7d8b62f3342bebc1ef6e7b83) colmena: only depend on one nix version
* [`71408df7`](https://github.com/NixOS/nixpkgs/commit/71408df70fd5bfbc0e5fc3776a942e2b0b93dad6) tamarin-prover: 1.8.0 → 1.10.0
* [`43b40f3b`](https://github.com/NixOS/nixpkgs/commit/43b40f3ba2bc2fe7c24472736b65b64189fee857) geolite-legacy: 20230901 → 20240720
* [`e3952520`](https://github.com/NixOS/nixpkgs/commit/e395252057a970084698e7204de03d890a7a0e2a) geolite-legacy: reformat according to rfc
* [`e9d417cd`](https://github.com/NixOS/nixpkgs/commit/e9d417cdd14b2bf9dcd09d0a396d6489f898958b) limesctl: drop
* [`0acd19c9`](https://github.com/NixOS/nixpkgs/commit/0acd19c9fc147d487154242239bd851c67c4b142) onionshare: fix runtime
* [`a96e4d9b`](https://github.com/NixOS/nixpkgs/commit/a96e4d9bfe337cf7b795658ee7409811094a2196) docker: use lib.versionOlder in literalExpression
* [`c8b3472f`](https://github.com/NixOS/nixpkgs/commit/c8b3472f1c59dcda1072a6a8cda7f77d34d7469a) rPackages.OpenCL: fix build
* [`4f8361ef`](https://github.com/NixOS/nixpkgs/commit/4f8361ef85a75f9158e41b1aeaa110b36b901033) gnomeExtensions.gsconnect: adopt by doronbehar
* [`035da94e`](https://github.com/NixOS/nixpkgs/commit/035da94ea9119220235b88187ef280953c40106f) gnomeExtensions.gsconnect: 57 -> 58
* [`9de71c61`](https://github.com/NixOS/nixpkgs/commit/9de71c61f5e87e35c0017a0dcc90a47977ecf452) lunatask: move to pkgs/by-name
* [`95e92966`](https://github.com/NixOS/nixpkgs/commit/95e929663d5121d52ca2a631e11e3b385117bca9) lunatask: 2.0.11 -> 2.0.12
* [`674769e6`](https://github.com/NixOS/nixpkgs/commit/674769e6790a3a8234e13454896baea27a82695b) lunatask: small improvements
* [`e510e227`](https://github.com/NixOS/nixpkgs/commit/e510e227beafdd3bcb5b4a3c0f6feefcb0d40c21) kitty: Binary wrap kitty, and sign on darwin
* [`7d1abc0f`](https://github.com/NixOS/nixpkgs/commit/7d1abc0fc5a6c07c1b8942f92c377a016be34174) musescore: apple-sdk migration, removed portaudio override
* [`82cfe011`](https://github.com/NixOS/nixpkgs/commit/82cfe011c4aff66538c60aac5648ff05ab7bdd31) lunatask: adopt
* [`f23d794c`](https://github.com/NixOS/nixpkgs/commit/f23d794c07dbf84289b84218eb235b3725121a93) python3Packages.irc: build fix for Python 3.11
* [`f919d20f`](https://github.com/NixOS/nixpkgs/commit/f919d20f12a2e38d4e20ed11d132ed92a9edea2f) lazysql: fix incorrect version output ([NixOS/nixpkgs⁠#353654](https://togithub.com/NixOS/nixpkgs/issues/353654))
* [`209e024a`](https://github.com/NixOS/nixpkgs/commit/209e024a2d470c997b6bff423a345d4d8724d877) uv: 0.4.29 -> 0.4.30
* [`7fe77273`](https://github.com/NixOS/nixpkgs/commit/7fe7727384b23dd58a3b115e7642db7ec842d60c) kafka-delta-ingest: unstable-2021-12-08 -> 0-unstable-2024-11-05
* [`69d3ba44`](https://github.com/NixOS/nixpkgs/commit/69d3ba44662fab5bc6fd0d81b8fabe6c23013854) forgejo: remove `refs/tags/` from github release `meta.changelog`
* [`8fff01c7`](https://github.com/NixOS/nixpkgs/commit/8fff01c7e80f24d515775aea05bacfaf81bcf55b) komac: remove `refs/tags/` from github release `meta.changelog`
* [`747b0ddc`](https://github.com/NixOS/nixpkgs/commit/747b0ddc1747f63a98267028669be0e334ec46c8) python312Packages.xdg-base-dirs: remove `refs/tags/` from github release `meta.changelog`
* [`ead2fda6`](https://github.com/NixOS/nixpkgs/commit/ead2fda64c1b26e43dc32e3c03c19059f7b7f013) typst: remove `refs/tags/` from github release `meta.changelog`
* [`2ec380a3`](https://github.com/NixOS/nixpkgs/commit/2ec380a34d8de15e1053cec472f58b79bb643617) equibop: remove `refs/tags/` from github release `meta.changelog`
* [`a3b81267`](https://github.com/NixOS/nixpkgs/commit/a3b81267aaa0f5aa70c9275bd305fdda581cec8f) mujoco: 3.2.4 -> 3.2.5
* [`975ae5ec`](https://github.com/NixOS/nixpkgs/commit/975ae5ec7eb56363e35a60b7185053c9534b20b3) python312Packages.tldextract: 5.1.2 -> 5.1.3
* [`ee673e60`](https://github.com/NixOS/nixpkgs/commit/ee673e603c986cbdb444e0e656d6e3c8e3f13c12) python312Packages.radon: fix build by relaxing mando
* [`a76a5d50`](https://github.com/NixOS/nixpkgs/commit/a76a5d50b50a19688d939457befe213bf664656b) python312Packages.reolink-aio: 0.10.1 -> 0.10.3
* [`28569cf9`](https://github.com/NixOS/nixpkgs/commit/28569cf91d0d8ad6036f197e2496f288d2b3b804) python312Packages.uiprotect: 6.3.2 -> 6.4.0
* [`a36b4d9a`](https://github.com/NixOS/nixpkgs/commit/a36b4d9ac9e2f4c42b145685a31ac8b58776e8cb) wl-screenrec: pin ffmpeg 6
* [`df58e0e3`](https://github.com/NixOS/nixpkgs/commit/df58e0e34da77b0ee3909c9687406f25756dd229) python312Packages.llm: 0.16 -> 0.17.1
* [`62a81793`](https://github.com/NixOS/nixpkgs/commit/62a8179390ca211192394643aeed1f3a57de0796) rPackages.mcrPioda: fixed build
* [`cb11b48c`](https://github.com/NixOS/nixpkgs/commit/cb11b48c1bab856a7b73a9074b13cd7567c8d982) lemurs: fix build error caused by https://github.com/rust-lang/rust/issues/115010
* [`abeafd2a`](https://github.com/NixOS/nixpkgs/commit/abeafd2a72c3451a7ef45957bbbf6ddef73ae1b3) nixos/kanidm: allow not setting bindaddress
* [`dfd82227`](https://github.com/NixOS/nixpkgs/commit/dfd822276d3088a6fd1072983d99b7b029497315) raycast: 1.84.10 -> 1.84.12
* [`263dc0c3`](https://github.com/NixOS/nixpkgs/commit/263dc0c329c55980df9de0cfae9510b21ac4b942) maude: 3.3.1 -> 3.4
* [`cd11f9b6`](https://github.com/NixOS/nixpkgs/commit/cd11f9b61267c5d50ecf75e17007788f8bd3d91f) lndinit: 0.1.5-beta -> 0.1.22-beta
* [`851849e3`](https://github.com/NixOS/nixpkgs/commit/851849e3c6bb8376b870d7292ee1412c54b42acc) vimPlugins.muren-nvim: init at 2023-08-26
* [`5ddc8ccd`](https://github.com/NixOS/nixpkgs/commit/5ddc8ccdc0af1c67ae17e8535f1143a7884e514d) lamdera: 1.3.1 -> 1.3.2
* [`53b356fc`](https://github.com/NixOS/nixpkgs/commit/53b356fcd79884d8f08f56e46ab467512eaeca92) python312Packages.django_5: 5.1.2 -> 5.1.3
* [`c771f151`](https://github.com/NixOS/nixpkgs/commit/c771f151f8bf7e83894f622c99d0a4c469bcb346) cfn-nag: added meta.mainProgram
* [`3b9afaf1`](https://github.com/NixOS/nixpkgs/commit/3b9afaf19cebbc03f907dc90a872f82166cbd5e3) goreleaser: 2.3.2 -> 2.4.4, drop inactive maintainers
* [`519cea42`](https://github.com/NixOS/nixpkgs/commit/519cea4260a1f616181adf58d3fca00e26856575) guile-sdl: mark broken on darwin
* [`0004c3c8`](https://github.com/NixOS/nixpkgs/commit/0004c3c898ea34508594a30cf0b16ab87a83237c) python312Packages.yaspin: fix build, set pyproject = true
* [`abcf5fb9`](https://github.com/NixOS/nixpkgs/commit/abcf5fb9b9439715081b45642deccd7c95ab0b30) maintainer-list: added mathstlouis
* [`9642cf41`](https://github.com/NixOS/nixpkgs/commit/9642cf41060a8fef6a8ed61adf9600accbe1da0c) cfn-nag: added mathstlouis to maintainers
* [`9423fce7`](https://github.com/NixOS/nixpkgs/commit/9423fce738237440115d9b07e1724aee47d4a5b5) element-desktop: 1.11.82 -> 1.11.84
* [`3e885002`](https://github.com/NixOS/nixpkgs/commit/3e8850024d015edd8d4a105c668bd9dc0a3c3425) actionlint: 1.7.3 -> 1.7.4
* [`2a55a31b`](https://github.com/NixOS/nixpkgs/commit/2a55a31be3c1ef661f804aa89537a876f3c3738a) kdePackages: Plasma 6.2.2 -> 6.2.3
* [`4bb99d03`](https://github.com/NixOS/nixpkgs/commit/4bb99d0350cfeb3bad2458d4f2052a74e8a02b33) php{81,82,83,84}Extensions.pdo_dblib: fix broken condition
* [`2a91cc49`](https://github.com/NixOS/nixpkgs/commit/2a91cc49b7d8b857311b0a72a5f8197861638f05) dnscontrol: 4.14.0 -> 4.14.2
* [`31fd3a6f`](https://github.com/NixOS/nixpkgs/commit/31fd3a6fe95deee382055dcc4244c2cfa20ef17b) cocoapods: 1.15.1 -> 1.16.2
* [`3592d2c1`](https://github.com/NixOS/nixpkgs/commit/3592d2c1c29e6c3d437ce37b577c21f85fd0d2fc) nextcloud-client: 3.14.2 -> 3.14.3
* [`3f2bbfd6`](https://github.com/NixOS/nixpkgs/commit/3f2bbfd68b794d0dfa24f2ebd0de99284d5dde51) nixos/openvpn3: add `/etc/openvpn3/configs` to `systemd.tmpfiles`
* [`0044a230`](https://github.com/NixOS/nixpkgs/commit/0044a23026daed7a1b5ee4658d35c1427f57da6c) neatvnc: use clickable meta.homepage link, replace pname with string
* [`2dbcd738`](https://github.com/NixOS/nixpkgs/commit/2dbcd73818222ca6c53093c18c1fac232847fc93) python312Packages.flax: 0.9.0 -> 0.10.1
* [`920eac09`](https://github.com/NixOS/nixpkgs/commit/920eac097f5c355adc0321d44f24032b1faa38a7) gfie: init at 4.2
* [`fd454586`](https://github.com/NixOS/nixpkgs/commit/fd45458624e1c4268142d715726218556859ca8c) libamplsolver: mark cross-compile as broken
* [`2415e261`](https://github.com/NixOS/nixpkgs/commit/2415e26111a91016bfcdc85e2371c18ddb34f449) nixos/pipewire: mention possible integration with pulseaudio
* [`e39c6aba`](https://github.com/NixOS/nixpkgs/commit/e39c6abaacb6d5e4da0da693d748ed59d3e4e975) mmex: 1.6.3 -> 1.8.0
* [`c803ed59`](https://github.com/NixOS/nixpkgs/commit/c803ed5996fb0457e6ddc356e8e499717cbcc211) icloudpd: 1.24.0 -> 1.24.3
* [`d711d8fb`](https://github.com/NixOS/nixpkgs/commit/d711d8fbed8bcfdf715e3e4b40d83a19d10ed80d) python3Packages.srp: 1.0.21 -> 1.0.22
* [`6fc68c21`](https://github.com/NixOS/nixpkgs/commit/6fc68c21e19bf28bbef32533ab30a4399c828659) vscode-extensions.asvetliakov.vscode-neovim: 1.18.13 -> 1.18.14
* [`bbc04afa`](https://github.com/NixOS/nixpkgs/commit/bbc04afa9fcce4ec572708f06878ff4f7276a833) cemu: 2.0-92 -> 2.2
* [`cd31998d`](https://github.com/NixOS/nixpkgs/commit/cd31998dc638930be5a199821257d1737717d6f7) maintainers: change baduhai's name
* [`037d89d1`](https://github.com/NixOS/nixpkgs/commit/037d89d14391df402f64b42ce7cc15880fe67736) kyverno-chainsaw: 0.2.8 -> 0.2.11
* [`37746218`](https://github.com/NixOS/nixpkgs/commit/377462189133351261c27d68439759a4584485ba) meteo-qt: init at 3.4
* [`d2489486`](https://github.com/NixOS/nixpkgs/commit/d24894863c4a6c79e3f8ac753c4055ba3854d34c) python312Packages.markdownify: fix build
* [`b4bdaa19`](https://github.com/NixOS/nixpkgs/commit/b4bdaa19e24400dbfdb2c87e86407f710742a8e6) hof: nixfmt
* [`2a276628`](https://github.com/NixOS/nixpkgs/commit/2a27662845330f07c481baf066053b6b53f5afd8) maintainers: add jhol
* [`c2a6507f`](https://github.com/NixOS/nixpkgs/commit/c2a6507f0591367017d46574884f92493fb01a29) sphinxcontrib-moderncmakedomain init at 3.29.0
* [`408bb50e`](https://github.com/NixOS/nixpkgs/commit/408bb50eb1f0a0404a4b325cef9b4a6e1781d8a3) emacsPackages.org-xlatex: mark as broken without xwidgets
* [`4b4a448a`](https://github.com/NixOS/nixpkgs/commit/4b4a448aa8b46acec19a9ea7042cb1ac7a1a29f0) linuxstopmotion: format with nixpkgs-rfc-style
* [`8d8fb832`](https://github.com/NixOS/nixpkgs/commit/8d8fb832603e955a559b82bc473749a71bf43be2) linuxstopmotion: stop using qt5.mkDerivation
* [`2bd2f80d`](https://github.com/NixOS/nixpkgs/commit/2bd2f80d4a6357410b2fb46b2dfa525b3ebfd1e3) stopmotion: rename from linuxstopmotion
* [`adaa8dad`](https://github.com/NixOS/nixpkgs/commit/adaa8dade54a17cb27e347a06bc30c40563d12c0) stopmotion: 0.8.5 -> 0.8.7
* [`d353f616`](https://github.com/NixOS/nixpkgs/commit/d353f6161f1b303457d35ba9d7b93cd83ae8e5ec) infrastructure-agent: init at 1.57.2
* [`092fef0a`](https://github.com/NixOS/nixpkgs/commit/092fef0ac8b67f8edd3a613c413ffc0bfb6a6786) sidekick: init at 0.6.6
* [`9e9e6c58`](https://github.com/NixOS/nixpkgs/commit/9e9e6c58b75ef05f32fbe947233eefbca400af62) python312Packages.mne-python: unbreak tests
* [`c8df6697`](https://github.com/NixOS/nixpkgs/commit/c8df66973b396186ced7e81f0dd3e475bf77d3b8) xcbuild: look in system toolchain for binaries on `/usr/bin`
* [`7ae8a1e5`](https://github.com/NixOS/nixpkgs/commit/7ae8a1e519de8d316830a73f119c2e19234d7a58) xcbuild: suppress warnings for unknown keys
* [`c6b663c0`](https://github.com/NixOS/nixpkgs/commit/c6b663c00ea7873e56228b0fcac818e87faa4b60) signalbackup-tools: 20241025 -> 20241105-2
* [`1abe027c`](https://github.com/NixOS/nixpkgs/commit/1abe027caad4052ca97bf0eaf1d701f922a25cbb) python312Packages.trimesh: 4.5.1 -> 4.5.2
* [`b68c1144`](https://github.com/NixOS/nixpkgs/commit/b68c1144b0cfe5da73417b878111e217e7cb00e4) python312Packages.pydicom-seg: unbreak tests
* [`012055eb`](https://github.com/NixOS/nixpkgs/commit/012055eb87c6d4aed16deccdcfa5cb335c99005e) systemd-netlogd: init at 1.4.2
* [`54ece522`](https://github.com/NixOS/nixpkgs/commit/54ece522d1a17b07c2a15db8b869056ff9e87d5b) dnsmasq_exporter: build with Go 1.22 for now
* [`86ef6426`](https://github.com/NixOS/nixpkgs/commit/86ef64265ae8307580a89c06e48af2336324dc59) peroxide: build with Go 1.22 for now
* [`2245f840`](https://github.com/NixOS/nixpkgs/commit/2245f840869c1c62ac5227a4a8ce758314f68645) ali: build with Go 1.22 for now
* [`7136dc68`](https://github.com/NixOS/nixpkgs/commit/7136dc6870175f6d0745a7e5a8d8e7a7cb01ba7b) honeytrap: build with Go 1.22 for now
* [`7545cec0`](https://github.com/NixOS/nixpkgs/commit/7545cec01f6dac13768236e107de88fd445343ca) devdash: build with Go 1.22 for now
* [`a4e4e653`](https://github.com/NixOS/nixpkgs/commit/a4e4e65330afb2ecd77d46b13986b0df9513dce5) bettercap: build with Go 1.22 for now
* [`f7a5ca27`](https://github.com/NixOS/nixpkgs/commit/f7a5ca27d855e5f8f7cf27f1d285b70d5d36695f) python311Packages.irc: enable local networking, unbreak on darwin
* [`12d623b9`](https://github.com/NixOS/nixpkgs/commit/12d623b9a89777dba07ed67579d7ba911dd2f85f) berry: fix darwin build
* [`0a8d9266`](https://github.com/NixOS/nixpkgs/commit/0a8d9266d69a2e21c1abb614eaa2acdf3718a097) signalbackup-tools: update to new darwin SDK pattern
* [`265c6a80`](https://github.com/NixOS/nixpkgs/commit/265c6a8046e34560e7486c5ee37dc2bd5ff5e4d0) afuse: fix darwin build
* [`d65243dc`](https://github.com/NixOS/nixpkgs/commit/d65243dcef837233696bedb61e323ca2fd007ecf) nixos/gotosocial: fix failing tests
* [`0d204871`](https://github.com/NixOS/nixpkgs/commit/0d204871a02d071f0a753cef09653bafd0beb635) afuse: replace -> replace-fail
* [`040826a9`](https://github.com/NixOS/nixpkgs/commit/040826a94f4da40261cb7a0383b90627a9c87573) erlang-ls: 0.52.0 -> 1.1.0
* [`b313405a`](https://github.com/NixOS/nixpkgs/commit/b313405a5d18353dd0ce011cee1725e17b7c8756) python312Packages.autopep8: 2.0.4-unstable-2023-10-27 -> 2.3.1
* [`232ece25`](https://github.com/NixOS/nixpkgs/commit/232ece2599ef8541e9cbe3f0da3dce91a40a6c70) maintainers: remove ianmjones
* [`01856f87`](https://github.com/NixOS/nixpkgs/commit/01856f87f67f23720f8bb725d687a7fd7bf2fb60) wl-kbptr: 0.2.1 -> 0.2.3
* [`d19b53a5`](https://github.com/NixOS/nixpkgs/commit/d19b53a5719fad79842768a4322f79a67dd22e44) vidcutter: init at 6.0.5.3
* [`09732d6d`](https://github.com/NixOS/nixpkgs/commit/09732d6d13fbff33c2e0f8deeae0f076a920ffbb) recordbox: init at 0.8.3
* [`fe1a600b`](https://github.com/NixOS/nixpkgs/commit/fe1a600b99704eb18a5009ac36ce216dc3424e64) woomer: init at 0.1.0
* [`ed7052a6`](https://github.com/NixOS/nixpkgs/commit/ed7052a6e23c6a087f3f18d41e600b006daf57d5) prisma-engines: 5.21.1 -> 5.22.0
* [`50962087`](https://github.com/NixOS/nixpkgs/commit/509620877774f4bd9f0306830398579b44c19ebb) expressvpn: fix build
* [`0f94967e`](https://github.com/NixOS/nixpkgs/commit/0f94967ec40ce86a5f2fbf34bef9efd4e8f20540) structorizer: 3.32-22 -> 3.32-23 ([NixOS/nixpkgs⁠#351701](https://togithub.com/NixOS/nixpkgs/issues/351701))
* [`0d812168`](https://github.com/NixOS/nixpkgs/commit/0d8121685f1a6c4672e7ec863b53ac616df9a12a) prisma: 5.21.1 -> 5.22.0
* [`6122ec1a`](https://github.com/NixOS/nixpkgs/commit/6122ec1a8cc98b1f5058bb29e1be446b2d58f42f) aw-watcher-window: mark darwin badPlatform
* [`114019fb`](https://github.com/NixOS/nixpkgs/commit/114019fb417b0256abadc7be35b17e052db8c995) aw-qt: mark darwin badPlatform
* [`ded820fb`](https://github.com/NixOS/nixpkgs/commit/ded820fb0344e1a1e018aec7cdd2b5c9b1ec862b) androidenv: update jdk to 17
* [`6bd3ff78`](https://github.com/NixOS/nixpkgs/commit/6bd3ff78381dbb38887574e7c587336768f8f5bb) gancio: remove mkYarnPackage usage
* [`c0b75b07`](https://github.com/NixOS/nixpkgs/commit/c0b75b073e3ad39228c0c08893aed82643491b94) python312Packages.plotnine: 0.14.0 -> 0.14.1
* [`dcaa6ad0`](https://github.com/NixOS/nixpkgs/commit/dcaa6ad0911590df7bb65a2bb2259538bcb28d47) python312Packages.multiscale-spatial-image: 1.0.1 -> 2.0.0
* [`3bdadc38`](https://github.com/NixOS/nixpkgs/commit/3bdadc381b5ada1d30a9c1ce0f5943beb0a66f97) obs-studio-plugins.advanced-scene-switcher: 1.27.3 -> 1.28.1
* [`10959a82`](https://github.com/NixOS/nixpkgs/commit/10959a82889bc2a8d50bf8e13144f64a20ae6d86) gancioPlugins.telegram-bridge: remove mkYarnPackage usage
* [`0d0690dc`](https://github.com/NixOS/nixpkgs/commit/0d0690dc79bd71174cd834a09643624ff3578321) nixos/bluetooth: reference bluez doc in descriptions
* [`5208a48c`](https://github.com/NixOS/nixpkgs/commit/5208a48c4325d198bb43f4161863ff4064f23844) python312Packages.tokenizers: 0.20.2 -> 0.20.3
* [`89c904bd`](https://github.com/NixOS/nixpkgs/commit/89c904bd204c52f41f01a0b264b2e061d6253178) librewolf: 131.0.3 -> 132.0.1
* [`4d530aeb`](https://github.com/NixOS/nixpkgs/commit/4d530aebe309e78e49b874aa360db7bd330691f9) python312Packages.flaxlib: init at 0.0.1-a1
* [`3047da7e`](https://github.com/NixOS/nixpkgs/commit/3047da7e864064458313de25cce5dc95321081dc) argo-expr: init at 1.1.3
* [`83f0e7c8`](https://github.com/NixOS/nixpkgs/commit/83f0e7c88157886d4c8d2d68e11e14e343d6c81b) freebsd.mkimg: support openbsd partitions guids
* [`6ac55888`](https://github.com/NixOS/nixpkgs/commit/6ac5588872e2d6b9312877df49446d6d77a5485a) python312Packages.pyinstaller: reformat
* [`80d9fe94`](https://github.com/NixOS/nixpkgs/commit/80d9fe945ba6b07d061b35ca4733ade583975937) openbsd.stand: init
* [`16aaf3b4`](https://github.com/NixOS/nixpkgs/commit/16aaf3b433f4b0ada61cb667507f94be171e7719) python312Packages.pyinstaller: 6.10.0 -> 6.11.0
* [`f8cc3fce`](https://github.com/NixOS/nixpkgs/commit/f8cc3fce40257bf564be705251ecf22e29f13769) openbsd.makefs: init
* [`59424d21`](https://github.com/NixOS/nixpkgs/commit/59424d21244d6ac485ddfa5999590640299dcffd) palemoon-bin: 33.4.0.1 -> 33.4.1
* [`4e0e0e7d`](https://github.com/NixOS/nixpkgs/commit/4e0e0e7d5b902581ac43adceebf4f48d338e115b) python312Packages.dm-control: 1.0.24 -> 1.0.25
* [`981dbd7f`](https://github.com/NixOS/nixpkgs/commit/981dbd7f40ca66f0a2d26a749711782f6fb07bff) python312Packages.flaxlib: add update script
* [`94d80c6f`](https://github.com/NixOS/nixpkgs/commit/94d80c6fa435c90a7d4d8a9ede75c2892551851f) python312Packages.transformers: 4.46.1 -> 4.46.2
* [`1fd2711b`](https://github.com/NixOS/nixpkgs/commit/1fd2711b2dcb83b82d868c3bd885c248fb3ff6f6) cargo-v5: init at 0.8.2
* [`fe5219cf`](https://github.com/NixOS/nixpkgs/commit/fe5219cf42fdd3814cb3311a3e997aa42c48fbf1) quickder: move to pkgs/by-name, reformat
* [`a26b3a3b`](https://github.com/NixOS/nixpkgs/commit/a26b3a3bc27a3e05e9cf0e78f1038539ae1b95f3) quickder: pin pyparsing to 3.1.2
* [`c806bfcb`](https://github.com/NixOS/nixpkgs/commit/c806bfcb2f7cc66ec8ae5ebd6160959e70fb3edc) maintainers: add akotro
* [`8b66100d`](https://github.com/NixOS/nixpkgs/commit/8b66100d577d44f243fc9736e0126183efe77129) it-tools: init at 2024.10.22-7ca5933
* [`17cc7a6f`](https://github.com/NixOS/nixpkgs/commit/17cc7a6f16065d96d3352aea749154ee401b53e3) darwin.libutil: use bootstrap SDK
* [`877e3454`](https://github.com/NixOS/nixpkgs/commit/877e3454bb9ffa10287f068742d05159c14b4574) apple-sdk: propagate the `darwin.libutil` library
* [`ee802060`](https://github.com/NixOS/nixpkgs/commit/ee802060b85f8e7d82af36de60a21320c9ec50a9) neovim-unwrapped: drop `darwin.libutil` dependency
* [`22f2052c`](https://github.com/NixOS/nixpkgs/commit/22f2052ca1e7b7cfb4b090faa2d924c3e27e4742) python{27,39,310,311,312,313,314}: drop Darwin `libutil` patch
* [`852523aa`](https://github.com/NixOS/nixpkgs/commit/852523aa47a72a1c88f28d7779bdc898ddf9150f) nixos/keepassxc: work around OCR issues
* [`c8c430ec`](https://github.com/NixOS/nixpkgs/commit/c8c430ecf9cfbf868ddcadc5a74ed236ec82181b) keepassxc: prevent deadlock with just one core
* [`c712874d`](https://github.com/NixOS/nixpkgs/commit/c712874d4ac0f5c30731b2a7acf0905d2da629f6) nixos/keepassxc: adapt to new UI details
* [`0e251673`](https://github.com/NixOS/nixpkgs/commit/0e251673369a938d1797d40c7fe55997bedbd50d) nixos/keepassxc: stop using deprecated cli option
* [`e71a6e47`](https://github.com/NixOS/nixpkgs/commit/e71a6e47787f05f24293ea86df27a283ed325ba0) tailspin: Patch the test binary path for the integration tests.
* [`71f04a2e`](https://github.com/NixOS/nixpkgs/commit/71f04a2e549681c3690951418af046414a715b46) tailspin: Migrated to by-name.
* [`70f47b08`](https://github.com/NixOS/nixpkgs/commit/70f47b08a068ddbf48e580fe0cdd176ef36b961d) python312Packages.caldav: 1.3.9 -> 1.4.0
* [`0549d317`](https://github.com/NixOS/nixpkgs/commit/0549d3174d551513472d6ba5cc43be1ecca6c6e3) libsidplayfp: 2.10.1 -> 2.11.0
* [`a43eb36f`](https://github.com/NixOS/nixpkgs/commit/a43eb36f04e0ae7260f8f414827e6e3845a72cb0) sidplayfp: 2.10.0 -> 2.11.0
* [`a70af477`](https://github.com/NixOS/nixpkgs/commit/a70af477b19cf3874dc8ddfe80dd01cdfe21e5db) libfmvoice: 0-unstable-2024-06-06 -> 0-unstable-2024-11-03
* [`ecff2204`](https://github.com/NixOS/nixpkgs/commit/ecff2204449afc1ced32878fc673808451e61000) libfmvoice: nixfmt
* [`e90e71b3`](https://github.com/NixOS/nixpkgs/commit/e90e71b3069d4f05b3dd3221f3f2cc5090a9d45e) libfmvoice: Drop meta-wide "with lib;"
* [`833eebc0`](https://github.com/NixOS/nixpkgs/commit/833eebc021af388fd917d74bb68bb6c76c6caa96) python312Packages.bidsschematools: init at 0.11.3
* [`cd2d4944`](https://github.com/NixOS/nixpkgs/commit/cd2d4944bedfac8de96e70844c25cc3719219fb7) python312Packages.bids-validator: fix build
* [`221b2afe`](https://github.com/NixOS/nixpkgs/commit/221b2afe734658cc09f2b9fdec0cc1783990b0f0) python312Packages.pybids: fix build
* [`9440d8d6`](https://github.com/NixOS/nixpkgs/commit/9440d8d6d9a8904e48e2078fb79f8a900b108f5e) vimPlugins: update on 2024-11-05
* [`4ec9cfe0`](https://github.com/NixOS/nixpkgs/commit/4ec9cfe0b2278ce8e17d668661eb8f5da33428ac) vimPlugins.nvim-treesitter: update grammars
* [`d38d66a8`](https://github.com/NixOS/nixpkgs/commit/d38d66a8fadf2c41fc6cd42548bdc251bdf80ffa) telepathy-glib: format
* [`64719655`](https://github.com/NixOS/nixpkgs/commit/64719655bd1a04d537ce578b5139fae2816b75a3) telepathy-glib: fix gcc14 build
* [`eb84890e`](https://github.com/NixOS/nixpkgs/commit/eb84890eb10d65f39673aa811c4e35fb964627b9) sarasa-gothic: 1.0.22 -> 1.0.23
* [`a3b4f5ea`](https://github.com/NixOS/nixpkgs/commit/a3b4f5ea491e0879b8f38ccc5f20fded2e28f84d) duplicacy: move to by-name
* [`aa726fae`](https://github.com/NixOS/nixpkgs/commit/aa726faeb227caef65467f725ebd3e56f6217f8f) duplicacy: 3.2.3 -> 3.2.4
* [`fb1047cc`](https://github.com/NixOS/nixpkgs/commit/fb1047cc381b0d944f25f2c43e3a158087a09f59) aider-chat: 0.61.0 -> 0.62.0
* [`4d3b8edd`](https://github.com/NixOS/nixpkgs/commit/4d3b8eddbdb994b36d97ad6a082cf76f84c22182) dua: 2.29.2 -> 2.29.4 ([NixOS/nixpkgs⁠#353603](https://togithub.com/NixOS/nixpkgs/issues/353603))
* [`4069d470`](https://github.com/NixOS/nixpkgs/commit/4069d47036144ba67543554a1e2fc2d0fd35f37c) fractal: fix image loading by applying glycin patch ([NixOS/nixpkgs⁠#353845](https://togithub.com/NixOS/nixpkgs/issues/353845))
* [`94662991`](https://github.com/NixOS/nixpkgs/commit/94662991dbd236ab1649c10711a39e1647faf5f7) vencord: 1.10.5 -> 1.10.6
* [`ab526e04`](https://github.com/NixOS/nixpkgs/commit/ab526e04fef8d7327de04870ff5ca92ff2aa30da) nixos/ids: explain *why* uids/gids shouldn't be above "399"
* [`ce43a2ba`](https://github.com/NixOS/nixpkgs/commit/ce43a2bab8d708965785e646cc12b7bda7689328) wechat-uos: Add hidpi scale support
* [`35567b88`](https://github.com/NixOS/nixpkgs/commit/35567b883f87e6747ab8c8786c472b2b7443856a) colorpicker: mention more alternatives
* [`c8ae804d`](https://github.com/NixOS/nixpkgs/commit/c8ae804d85ccbd014595fbbeadf631bcbddadeac) python312Packages.tencentcloud-sdk-python: 3.0.1259 -> 3.0.1261
* [`00395814`](https://github.com/NixOS/nixpkgs/commit/00395814bfa6d09afabee2f9f5d5da3a79416fc6) python312Packages.holidays: 0.59 -> 0.60
* [`a2348d78`](https://github.com/NixOS/nixpkgs/commit/a2348d7835a7738d91022aeb4164a44240da629d) python312Packages.mitogen: 0.3.15 -> 0.3.16
* [`43b26ed0`](https://github.com/NixOS/nixpkgs/commit/43b26ed0d065861b90e2c83fa93208c05b325eea) python312Packages.pyatv: 0.15.1 -> 0.16.0
* [`c55530f9`](https://github.com/NixOS/nixpkgs/commit/c55530f978aaa224bc6d64f2f134f7fdbbedc42e) curl: 8.10.1 -> 8.11.0
* [`f3ce0f26`](https://github.com/NixOS/nixpkgs/commit/f3ce0f26fed1b5052dd81fe248f565bf27f79907) linuxPackages_5_x.perf: fix build with Python 3.12
* [`edf4376d`](https://github.com/NixOS/nixpkgs/commit/edf4376d679dfd521e04054592f10fa21a137355) python312Packages.pycookiecheat: 0.7.0 -> 0.8.0
* [`3f9c147f`](https://github.com/NixOS/nixpkgs/commit/3f9c147fde164ec2583c70ea784fd92ec08f2341) bootc: init at 1.1.0
* [`8aa492bb`](https://github.com/NixOS/nixpkgs/commit/8aa492bb4973d10356e4cc9cdc7f5d5a7d229e32) python312Packages.pycookiecheat: update disabled
* [`c74acf02`](https://github.com/NixOS/nixpkgs/commit/c74acf0288c9a35ecc78f223f0b80e45c8302d0b) python312Packages.pyenvisalink: 4.7 -> 4.8
* [`1baf5b78`](https://github.com/NixOS/nixpkgs/commit/1baf5b786460a1693398016812fa920b7967e6b8) bustle: 0.9.2 -> 0.10.0
* [`462716b3`](https://github.com/NixOS/nixpkgs/commit/462716b35f4b0163e806d6696cbe12a8c5313d12) bustle: add aleksana as maintainer
* [`1be419de`](https://github.com/NixOS/nixpkgs/commit/1be419deccb494ba2efa1de37d3e0ee4a2c214a7) coqPackages.mathcomp-analysis: rename altreals to experimental-reals
* [`82dc05c2`](https://github.com/NixOS/nixpkgs/commit/82dc05c26db339c935fe5bf604518e8cee36c10e) hickory-dns: nixfmt
* [`319f3c98`](https://github.com/NixOS/nixpkgs/commit/319f3c98a7f9df80f42db2c4ab1ba38d5867b7f3) hickory-dns: add passthru.updateScript
* [`36745c6b`](https://github.com/NixOS/nixpkgs/commit/36745c6b81064c29682ad83e2e4596854e75ad4c) doc: remove 'simply'
* [`8a1b1fb9`](https://github.com/NixOS/nixpkgs/commit/8a1b1fb951e03430ba7c3e9bb6919e926789a195) pythonPackages.pysatochip: fix build
* [`28623f81`](https://github.com/NixOS/nixpkgs/commit/28623f8163ac1e1ff8fa527bd7b9d1bce46b8b1c) hickory-dns: 0.24.0 -> 0.25.0-alpha.2
* [`6d34890b`](https://github.com/NixOS/nixpkgs/commit/6d34890bbd5779be8a17a7bf00f6ff38e5343b79) project-lemonlime: add missing patch for non FHS env
* [`f0bc0bd3`](https://github.com/NixOS/nixpkgs/commit/f0bc0bd3f8bc3ef6f2b4f99f76abef53b64a0778) tamatool: fix darwin builds
* [`94f930a1`](https://github.com/NixOS/nixpkgs/commit/94f930a1969bae5b9b2fee1f63763cf0cdbe61b7) tamatool: format with nixpkgs-rfc-style
* [`723e7d01`](https://github.com/NixOS/nixpkgs/commit/723e7d019f499354abd124081cfbd5b30e0ad672) efmt: init at 0.18.2
* [`c410fc65`](https://github.com/NixOS/nixpkgs/commit/c410fc65964ef9bd656e92058d815f939c5db887) hdf4: fix typo that breaks toggling netcdf support
* [`71f467fc`](https://github.com/NixOS/nixpkgs/commit/71f467fc8847db2a493c6fc6b09b2147fb15ef6c) iwd: update settings documentation
* [`95973ffa`](https://github.com/NixOS/nixpkgs/commit/95973ffac3d978a6f46cf8ec82a50c6e0bea9f18) butterfly: add license and sourceProvenance for pdfium binaries
* [`10597023`](https://github.com/NixOS/nixpkgs/commit/10597023a8a709986a08750aa75f9da6f666ac8d) slackdump: init at 2.5.11
* [`887a74fd`](https://github.com/NixOS/nixpkgs/commit/887a74fd5784727637534d9a6383e2a0719f54ec) clickhouse: fix compilation on aarch64-linux
* [`975f4c45`](https://github.com/NixOS/nixpkgs/commit/975f4c45ae5c0f41769e7ccee08c96748b334b7f) beszel: init at 0.6.2
* [`9609ea87`](https://github.com/NixOS/nixpkgs/commit/9609ea87577424d7be4813e9665fa5267c74c880) vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.14 -> 4.0.15
* [`5473874d`](https://github.com/NixOS/nixpkgs/commit/5473874d08c900b27b08d2b8993fbc72e856996c) nixos/amdvlk: don't set "amdgpu" xserver driver
* [`63def528`](https://github.com/NixOS/nixpkgs/commit/63def5281884dd422797668e7de9eda0c507dccf) pinact: 0.2.1 -> 1.0.0
* [`7d73149a`](https://github.com/NixOS/nixpkgs/commit/7d73149a1d975178ca5d0cb82ca6043c6cf3101b) guestfs-tools: move to by-name
* [`09509e06`](https://github.com/NixOS/nixpkgs/commit/09509e06cdfdda60eee020874fc8069ef959dcd3) guestfs-tools: nixfmt
* [`dd02b08a`](https://github.com/NixOS/nixpkgs/commit/dd02b08a8f776f8f842ce2c7e2fa27a6c7231b09) guestfs-tools: avoid building on hydra
* [`14d82407`](https://github.com/NixOS/nixpkgs/commit/14d8240756d10e6c5f45833ad335e5b426df2612) flashrom: Remove Felix Singer from maintainers
* [`1ea6a630`](https://github.com/NixOS/nixpkgs/commit/1ea6a63088673f307b94c59c13a1827575d1e075) arrow-cpp: 17.0.0 -> 18.0.0
* [`c9ae493b`](https://github.com/NixOS/nixpkgs/commit/c9ae493b654cb16ce6fad1e842569e9ef40e1ea5) arrow-cpp: substitute --replace with --replace-fail
* [`eeff2e3d`](https://github.com/NixOS/nixpkgs/commit/eeff2e3d9b15cf525690c901e7f3de73c68b3468) ceph: patch to pick up upstream arrow 18 s3select fix
* [`8b47fb90`](https://github.com/NixOS/nixpkgs/commit/8b47fb90fe88b5379f07cf0a74d56cfd48643cc2) gdal: apply upstream patch for arrow 18
* [`3bd5960a`](https://github.com/NixOS/nixpkgs/commit/3bd5960a6cd57bbd3ea527dc8a5bc14088926f93) python3.pkgs.datafusion: add protoc
* [`6c0def83`](https://github.com/NixOS/nixpkgs/commit/6c0def8319256fe880bcf0dac2483ca78d7eaac7) python3.pkgs.ibis-framework: patch tests for arrow 18
* [`982f812a`](https://github.com/NixOS/nixpkgs/commit/982f812ae9e6d22e8e002e08e921163454d902ec) chore: style
* [`cb2ef38a`](https://github.com/NixOS/nixpkgs/commit/cb2ef38a117796ee140dd292189b30f9b1d29336) arrow-cpp: fix `pkgsStatic`
* [`29069e4f`](https://github.com/NixOS/nixpkgs/commit/29069e4fef740b657525c9dfa979fc4e8c7e15e4) arrow-cpp: disable jemalloc for arm hosts by default
* [`a6388366`](https://github.com/NixOS/nixpkgs/commit/a6388366ac19a42b72faa90304ffb6af5c1da555) python3.pkgs.databricks-sql-connector: fix build by removing patch and relaxing thrift dependency
* [`81a221b8`](https://github.com/NixOS/nixpkgs/commit/81a221b8a33545b76ed0cb275b5915a469ef8a7f) josh: 24.08.14 -> 24.10.04
* [`2d79445d`](https://github.com/NixOS/nixpkgs/commit/2d79445d164f68a558f8e349861dc1ef2f3f03aa) libsForQt5.pix: nixfmt
* [`3e78bb1b`](https://github.com/NixOS/nixpkgs/commit/3e78bb1b324d357eda840dab85de065829152ce0) Re-add test-pkgs to excluded-attrnames-at-any-depth
* [`40917814`](https://github.com/NixOS/nixpkgs/commit/40917814c49146d84ed39792185ed5702ff584ba) tsukimi: 0.16.7 -> 0.16.9
* [`3ea10f99`](https://github.com/NixOS/nixpkgs/commit/3ea10f99b7cb0c6fa7ab56f082030c7cfea97ae2) libsForQt5.pix: fix build
* [`e57af945`](https://github.com/NixOS/nixpkgs/commit/e57af9455aaa65b52e98f78fa25bb1e2cc9664fe) raycast: 1.84.12 -> 1.85.0
* [`5eea8002`](https://github.com/NixOS/nixpkgs/commit/5eea80021fc2692f1aacbbd6e842bfa7e408e58e) nexusmods-app: 0.6.2 -> 0.6.3
* [`3e646301`](https://github.com/NixOS/nixpkgs/commit/3e646301a07eb30da02f8c7775f6b3865c0ebac2) smartcat: 1.7.1 -> 2.1.0
* [`5b765c46`](https://github.com/NixOS/nixpkgs/commit/5b765c4658c2dd480776d4a942024b5eb7a82d0b) cargo-gra: init at 0.6.0
* [`161e7bff`](https://github.com/NixOS/nixpkgs/commit/161e7bff14474b01129279a42d207e752ea585fc) karlender: move to by-name
* [`dda8654c`](https://github.com/NixOS/nixpkgs/commit/dda8654cbd41249abbef64a00ed091b365969569) karlender: nixfmt
* [`4dccc2cc`](https://github.com/NixOS/nixpkgs/commit/4dccc2cc9a55ee704d3b11dcfcc1e90947dbd9ac) karlender: add passthru.updateScript
* [`7e0fc29e`](https://github.com/NixOS/nixpkgs/commit/7e0fc29eca02b60ecefe3f824d1de64f72437eef) karlender: 0.9.2 -> 0.10.4
* [`9a47d382`](https://github.com/NixOS/nixpkgs/commit/9a47d382c37a6f942175c654bd42d22cfe484105) karlender: add bot-wxt1221 as maintainers
* [`f246eac4`](https://github.com/NixOS/nixpkgs/commit/f246eac4dd49ba6e1335ea80d8a1c29ad9105d03) materia-theme-transparent: init at 0-unstable-2021-03-22
* [`e7bde375`](https://github.com/NixOS/nixpkgs/commit/e7bde375df683567a8e9831545425e06451f964e) strace: enable debug info
* [`4329e514`](https://github.com/NixOS/nixpkgs/commit/4329e514c1f465304d1d70c8bc3dea8a1fd44952) trueseeing: 2.2.2 -> 2.2.4
* [`cf507596`](https://github.com/NixOS/nixpkgs/commit/cf5075963a3f1463afda30a8fcb5b8f76b83f9e3) bloop: 2.0.3 -> 2.0.4
* [`05ac36fa`](https://github.com/NixOS/nixpkgs/commit/05ac36fa30a32157099f9828132ba20f665b6424) treewide: use dontCargo{Build,Check,Install}
* [`a5149970`](https://github.com/NixOS/nixpkgs/commit/a51499706cc67d904e51269423ae443cf8d2c275) trueseeing: with lib; cleanup
* [`8710b81a`](https://github.com/NixOS/nixpkgs/commit/8710b81a3b7e3353d71564ff5fda25f0ff693933) trueseeing: nix-rfc-fmt
* [`fb5b0a99`](https://github.com/NixOS/nixpkgs/commit/fb5b0a999faaee4d7a157bc01f93ad4387180ba7) deno: 2.0.2 -> 2.0.5
* [`ef7e5af4`](https://github.com/NixOS/nixpkgs/commit/ef7e5af4a45e36a69286663f06314179bf2949c8) cosmic-settings-daemon: use make install
* [`4becb382`](https://github.com/NixOS/nixpkgs/commit/4becb3821e08d02388045f40044c0fefa36cdec5) ocaml: build defaultentry not bootstrap on 5.2+
* [`7a9fb50f`](https://github.com/NixOS/nixpkgs/commit/7a9fb50f24bb71d85382022cbab227309c64cfc2) python3Packages.telegram: removal ([NixOS/nixpkgs⁠#353915](https://togithub.com/NixOS/nixpkgs/issues/353915))
* [`898996f4`](https://github.com/NixOS/nixpkgs/commit/898996f4f8eee822677fc18b7d8b083465435ff0) ladybird: add updateScript
* [`f4513491`](https://github.com/NixOS/nixpkgs/commit/f45134918fddeac94b00e095878e296783caa0d6) python312Packages.xsdata: 24.9 -> 24.11
* [`409f723e`](https://github.com/NixOS/nixpkgs/commit/409f723e01cafc995b9d1f9adcb821c2c8f82491) spotify: 1.2.45.454.gc16ec9f6 -> 1.2.48.405.gf2c48e6f
* [`1c07b97d`](https://github.com/NixOS/nixpkgs/commit/1c07b97d2d4302baca8c61fa2d0d4632427972a7) tuxguitar: Update homepage URL ([NixOS/nixpkgs⁠#353695](https://togithub.com/NixOS/nixpkgs/issues/353695))
* [`1f53d0a9`](https://github.com/NixOS/nixpkgs/commit/1f53d0a9f2e19745500f8b181e027ef7deca8351) xandikos: 0.12.1 -> 0.12.2 ([NixOS/nixpkgs⁠#352604](https://togithub.com/NixOS/nixpkgs/issues/352604))
* [`6ca4a965`](https://github.com/NixOS/nixpkgs/commit/6ca4a9653306ac3d70a707e00ffd5a3bc5dd8c06) stayrtr: 0.5.1 -> 0.6.1 ([NixOS/nixpkgs⁠#348291](https://togithub.com/NixOS/nixpkgs/issues/348291))
* [`06c1ed78`](https://github.com/NixOS/nixpkgs/commit/06c1ed782d9c3881ebb9b231fb929d9ce4746431) gnome-firmware: format
* [`e7e4f76a`](https://github.com/NixOS/nixpkgs/commit/e7e4f76aebab757d3088071c0aceac2df78a45bb) gnome-firmware: move to by-name
* [`f9337922`](https://github.com/NixOS/nixpkgs/commit/f9337922ac2c84ad509dd392c56f358141071c3f) gnome-firmware: switch to finalAttrs
* [`6bc77c1a`](https://github.com/NixOS/nixpkgs/commit/6bc77c1aaddef5960f946ed6faeba7ac8b71276a) gnome-firmware: 46.0 -> 47.0
* [`ff6d89ac`](https://github.com/NixOS/nixpkgs/commit/ff6d89ac694100ab5350cda97e46fdbd54a54e6c) nixos/netbox: clear old static files on upgrade
* [`fe58368d`](https://github.com/NixOS/nixpkgs/commit/fe58368de684b85915891352ef8bc3dd6e4d8ecc) nixos/netbox: switch to symlink to check for upgrades
* [`e89fc9ca`](https://github.com/NixOS/nixpkgs/commit/e89fc9caf5e7acd48e1a4663a7860a4ebc2e30c7) bitwarden-desktop: further simplify checkPhase
* [`277aa10a`](https://github.com/NixOS/nixpkgs/commit/277aa10ad5ffa2161984d0b12070299fe3c8c9a4) bambu-studio: remove openvdb override
* [`1c2c7e4b`](https://github.com/NixOS/nixpkgs/commit/1c2c7e4b76c395fdcc237faf5d2633b22766b03e) openvdb: fix incorrect license
* [`053fbe5f`](https://github.com/NixOS/nixpkgs/commit/053fbe5f03de69c2d163b390c3ea8870b6080a81) python312Packages.htseq: 2.0.4 -> 2.0.9
* [`41fbbcab`](https://github.com/NixOS/nixpkgs/commit/41fbbcabc73c82d2990992dc36baba31628a99a9) ghidra: 11.2 -> 11.2.1
* [`13bedee7`](https://github.com/NixOS/nixpkgs/commit/13bedee7fd23d8608b4e4980a246ac39f9b8fcfb) age-plugin-yubikey: 0.5.0 -> 0.5.0-unstable-2024-11-02
* [`0911c1ab`](https://github.com/NixOS/nixpkgs/commit/0911c1abd3751572e30b1a72f1d5f911df58e8f0) age-plugin-yubikey: move to by-name
* [`ceb52df3`](https://github.com/NixOS/nixpkgs/commit/ceb52df314f1fdcb818d1775f7e3301f329d5f0f) age-plugin-yubikey: add adamcstephens as maintainer
* [`a7d71f16`](https://github.com/NixOS/nixpkgs/commit/a7d71f16508a21706550b80cf6cdcc1e5fc844bf) kanidm: 1.4.0 -> 1.4.1
* [`78fbb329`](https://github.com/NixOS/nixpkgs/commit/78fbb32923453c5b5f6bdb29a05e32c0ab9a680a) bazecor: 1.5.2 -> 1.5.3
* [`218f61cf`](https://github.com/NixOS/nixpkgs/commit/218f61cfade89c42c191d703fe60956200a23728) python312Packages.dbt-common: 1.11.0 -> 1.12.0
* [`d0eaae15`](https://github.com/NixOS/nixpkgs/commit/d0eaae1588173ffafb37bd3c0a2e9637faa519c7) python312Packages.dbt-common: apply patch for protobuf 5 compatibility
* [`b0070519`](https://github.com/NixOS/nixpkgs/commit/b00705196878fb0d05c66cdae25488765f4ed124) zls: move to by-name
* [`a67ab247`](https://github.com/NixOS/nixpkgs/commit/a67ab24716a045d27b9612279612a953e52b1917) ente-cli: init at 0.2.2
* [`a7116064`](https://github.com/NixOS/nixpkgs/commit/a711606443a94644fadbb999795182645c7cc36a) ytt: 0.50.0 -> 0.51.0
* [`d4d2ec47`](https://github.com/NixOS/nixpkgs/commit/d4d…
github-actions bot added a commit to AkechiShiro/arewehackersyet that referenced this issue Dec 1, 2024
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/[email protected]](https://github.com/NixOS/nixpkgs/compare/f71e09a7cedaa5acbfdba8a315248c90ef4f1fd1...2c27ab2e60502d1ebb7cf38909de38663f762a79)

* [`64c924e0`](https://github.com/NixOS/nixpkgs/commit/64c924e098fb8c2c2055f81317865fb8602c8c66) edge-runtime: move to by-name
* [`1221b2e0`](https://github.com/NixOS/nixpkgs/commit/1221b2e0daa370561a6b8d48b42d63927880e5bf) edge-runtime: nixfmt
* [`c495d970`](https://github.com/NixOS/nixpkgs/commit/c495d97060a31295c66cfd157b6299fcc61b9a31) edge-runtime: 1.53.4 -> 1.60.1
* [`84bf4842`](https://github.com/NixOS/nixpkgs/commit/84bf48421f7381924b218075110af2b569f2434b) checkov: 3.2.276 -> 3.2.277
* [`25d33b8c`](https://github.com/NixOS/nixpkgs/commit/25d33b8c78e7f99a454cce1c37be65df9d0afcdf) dnsdiag: 2.5.0 -> 2.6.0
* [`40b7674b`](https://github.com/NixOS/nixpkgs/commit/40b7674b98ea79a540908b36c2d72add66a35218) nixos/tests/switchTest: Test no boot loader
* [`1c69b0c0`](https://github.com/NixOS/nixpkgs/commit/1c69b0c0e734568af54cd5d5f21231bd6d5870fa) mutagen: 0.17.1 -> 0.18.0
* [`f0668b48`](https://github.com/NixOS/nixpkgs/commit/f0668b4886f06a09a2be67f0821f472e23a86c55) cargo-sweep: fix build by disabling broken test
* [`c351ae96`](https://github.com/NixOS/nixpkgs/commit/c351ae969d6ffb852e85b362189770e13ce5eda3) cargo-sweep: format using nixfmt
* [`efd6331c`](https://github.com/NixOS/nixpkgs/commit/efd6331c95521d24bc7802fc380af9509cf44a15) pytrainer: unpin python 3.10
* [`a36cf528`](https://github.com/NixOS/nixpkgs/commit/a36cf528f76468419d6e7df22ad652607b21e195) git-fast-export: move to by-name
* [`2ff0c93a`](https://github.com/NixOS/nixpkgs/commit/2ff0c93a65b60a40f12a326f3a98133d1e026be8) git-fast-export: nixfmt
* [`6e66b546`](https://github.com/NixOS/nixpkgs/commit/6e66b546a1e0c6e93426ff7b44afbc2f4705293d) git-fast-export: add passthru.updateScript
* [`a7cda683`](https://github.com/NixOS/nixpkgs/commit/a7cda6835fc042a0a70d3e1983863aad0183d229) nixos/tests/switchTest: Remove spurious dbus reload checks
* [`f92ec1bc`](https://github.com/NixOS/nixpkgs/commit/f92ec1bc93990197895f4ce4bcf29354a738f830) nixos/tests/switchTest: Add test for dbus reloading
* [`5d9ac946`](https://github.com/NixOS/nixpkgs/commit/5d9ac94606923cadc983c508dc065213e64e055f) nixos/activation-script: Make `installBootLoader` default a script
* [`5dee69a2`](https://github.com/NixOS/nixpkgs/commit/5dee69a240e48f250918fd57e91e4a66910909d2) git-fast-export: 221024 -> 231118
* [`d7b5ff5f`](https://github.com/NixOS/nixpkgs/commit/d7b5ff5f6822365392086f7f1ddc5edaa583c01d) maintainers: add keksgesicht
* [`20ae63db`](https://github.com/NixOS/nixpkgs/commit/20ae63db781cab9b8ebe2597e8cfd4c87efe405a) tuxedo-drivers: add myself and a few others as maintainers
* [`102e53fb`](https://github.com/NixOS/nixpkgs/commit/102e53fbd4bd85895a84792d4b576c275632b36e) tuxedo-drivers: update build commands
* [`c6cb939c`](https://github.com/NixOS/nixpkgs/commit/c6cb939c84e4efa0b5b11d99358cb472cd807ee3) tuxedo-drivers: 4.7.0 -> 4.9.0
* [`6f05c66e`](https://github.com/NixOS/nixpkgs/commit/6f05c66e17f7f5ff2002de488a0f037badb3ef92) python312Packages.pymc: 5.17.0 -> 5.18.0
* [`7d3596a9`](https://github.com/NixOS/nixpkgs/commit/7d3596a9328e0edfb2dedcee4f82e3c0804252fa) gromacs: 2024.3 -> 2024.4
* [`cc3c24dd`](https://github.com/NixOS/nixpkgs/commit/cc3c24dde3583b44b0eca9418446b33270c15b95) vimPlugins.avante-nvim: 2024-10-18 -> 2024-11-04
* [`0a0e61b0`](https://github.com/NixOS/nixpkgs/commit/0a0e61b073536683e611506ceec0230f526efd15) apachetomcatscanner: add missing dependencies
* [`08790dff`](https://github.com/NixOS/nixpkgs/commit/08790dff7907b73811efbdc3eef8c4662b8c9b68) xorg.libAppleWM: constrain to darwin targets
* [`7819e574`](https://github.com/NixOS/nixpkgs/commit/7819e57453b6f2b86228d4dbae3ee0f00ba72814) pylyzer: 0.0.68 -> 0.0.69
* [`179f1365`](https://github.com/NixOS/nixpkgs/commit/179f1365e022d5fb02144a2d3f4e7b4dbacbc990) rPackages.bgx: fix build
* [`c0aef2b9`](https://github.com/NixOS/nixpkgs/commit/c0aef2b9dc49dbc696ee2b68844a0427a63b14a5) python312Packages.tencentcloud-sdk-python: 3.0.1257 -> 3.0.1259
* [`1c37a249`](https://github.com/NixOS/nixpkgs/commit/1c37a2492c17be2c54f2c35f181871fedebc8125) rPackages.resultant: fix build
* [`8b274c80`](https://github.com/NixOS/nixpkgs/commit/8b274c8054e5f56c839f6efc6dbf38bc4074fdf0) iverilog: Update homepage link
* [`3618ec6a`](https://github.com/NixOS/nixpkgs/commit/3618ec6a0ad2cd68599694eb11b1f400e68c4f20) sile: nixfmt; move to pkgs/by-name
* [`0a5b0c8c`](https://github.com/NixOS/nixpkgs/commit/0a5b0c8cd928ebe29f99f27927b94f6030f4e727) sile: don't use with lib; in meta
* [`fca1f18d`](https://github.com/NixOS/nixpkgs/commit/fca1f18de9448d0861879ac454b5382bc32d221f) sile: use finalAttrs.finalPackage when needed
* [`9f1a0fde`](https://github.com/NixOS/nixpkgs/commit/9f1a0fde5c45c5017c36832bc4577c88a86e0caf) sile: allow easier override of luaEnv
* [`e37658c6`](https://github.com/NixOS/nixpkgs/commit/e37658c6f144b627231cce1be5b12918bb728a01) sile: reorder callPackage arguments like in expression
* [`6b90fbc9`](https://github.com/NixOS/nixpkgs/commit/6b90fbc91f0aec54d30d5e6756392223eb8afbc5) sile: use lib.optionals for Darwin specific inputs
* [`caa10b05`](https://github.com/NixOS/nixpkgs/commit/caa10b055f92d4bfc8da3e4a71fb7264d715c492) nix: update fallback paths automatically
* [`fbd18886`](https://github.com/NixOS/nixpkgs/commit/fbd188864020b9a1226d35b9df1fe465e1f378c1) re-add libsandbox
* [`e2a21bdd`](https://github.com/NixOS/nixpkgs/commit/e2a21bddefb8cbd10710d9dcd4a2293d01325e27) python312Packages.openusd: add gador as co-maintainer
* [`6df0b10d`](https://github.com/NixOS/nixpkgs/commit/6df0b10df6903be10245355ef35dd8435084bd95) Revert "less: Fix withSecure regression"
* [`b2b573e3`](https://github.com/NixOS/nixpkgs/commit/b2b573e39ac0644730c4dc8f04e2b4d152a2c81e) maintainers: update entry for kloenk
* [`5a37bac4`](https://github.com/NixOS/nixpkgs/commit/5a37bac414ff58ca4d36ed9fc4642035d4597b7d) sile: 0.14.17 -> 0.15.5
* [`9c92ae59`](https://github.com/NixOS/nixpkgs/commit/9c92ae59f1931db1ed47acaf793846b964d844d7) linuxPackages.apfs: 0.3.11 -> 0.3.12
* [`c06d108c`](https://github.com/NixOS/nixpkgs/commit/c06d108c276991ee56c2cca9a84d813a7c66b1c1) SDL_gpu: Format using nixfmt-rfc-style
* [`c4edf939`](https://github.com/NixOS/nixpkgs/commit/c4edf939886aa9e61a9e266c776056b9f5d79cbc) Cleanup helsinki maintainer ([NixOS/nixpkgs⁠#353611](https://togithub.com/NixOS/nixpkgs/issues/353611))
* [`083d0095`](https://github.com/NixOS/nixpkgs/commit/083d0095e65a6608d3cb8375d72d0e38a10b512e) SDL_gpu: Fix build on clang 16
* [`0d04728e`](https://github.com/NixOS/nixpkgs/commit/0d04728ee39040de5b6dd0eb1711cc3d100de3cb) nixos/conduit: wait for network-online.target
* [`54d6c4b1`](https://github.com/NixOS/nixpkgs/commit/54d6c4b1547020151a9cf9a4cedf3645a3dcbcc6) earbuds: init at 0.1.9-unstable-2024-06-28
* [`bdef0396`](https://github.com/NixOS/nixpkgs/commit/bdef0396f569727e127977acc56b9fd5c6eb3832) florist: init at 24.2
* [`cc275e64`](https://github.com/NixOS/nixpkgs/commit/cc275e641f1a0fb82616e84817bf21b65650767d) python312Packages.h5py-mpi: remove unused patch
* [`a0df5569`](https://github.com/NixOS/nixpkgs/commit/a0df55691923a6c542a7b33f61ad289850863e34) python312Packages.h5py-mpi: fix build by relaxing mpi4py dependency
* [`1fe651e7`](https://github.com/NixOS/nixpkgs/commit/1fe651e76ca98dee8fb10f715cb2c9312d8f4714) monolith: add nix update script
* [`fa58667f`](https://github.com/NixOS/nixpkgs/commit/fa58667f93ac8784d675618123b5d919ac0d0886) openmolcas: fix shebangs in python scripts
* [`2a64a9a2`](https://github.com/NixOS/nixpkgs/commit/2a64a9a22a7540182b64b90728b0ac51cffd5145) aws-assume-role: move to by-name
* [`45fd66c2`](https://github.com/NixOS/nixpkgs/commit/45fd66c2381cf16805ddec305b551dd82da712af) aws-assume-role: nixfmt
* [`e7e66352`](https://github.com/NixOS/nixpkgs/commit/e7e66352e9c5f525de6dd44c4d463f472ad2ca06) cbconvert: init at 1.0.4
* [`a0b8a795`](https://github.com/NixOS/nixpkgs/commit/a0b8a795a6e33aaf3a88e4c82f43be359f796d1f) aws-assume-role: fix build
* [`7149d521`](https://github.com/NixOS/nixpkgs/commit/7149d521b642740baff075ff03c73e1cfcf98d44) mimir: 2.14.0 -> 2.14.1
* [`0d9236eb`](https://github.com/NixOS/nixpkgs/commit/0d9236eb1807ba08dbbb4f2943ffa61c5b305137) python312Packages.pygtail: 0.8.0 -> 0.14.0
* [`6b659580`](https://github.com/NixOS/nixpkgs/commit/6b6595801400dc24ad9242c8891409a895347902) python312Packages.pygtail: refactor
* [`24a2d2a2`](https://github.com/NixOS/nixpkgs/commit/24a2d2a261aa8d030728bb70581ab3a3f7890846) tree-sitter-grammars: add river ([NixOS/nixpkgs⁠#347752](https://togithub.com/NixOS/nixpkgs/issues/347752))
* [`478934a2`](https://github.com/NixOS/nixpkgs/commit/478934a2a5e314eaf15913c89b13a51ebb4c8e33) matugen: use new darwin sdk pattern
* [`0376c8fc`](https://github.com/NixOS/nixpkgs/commit/0376c8fc98e1e9a46824ced4573567524182a5a8) python312Packages.ush: 3.1.0 -> 4.1.0
* [`9f2b4ca0`](https://github.com/NixOS/nixpkgs/commit/9f2b4ca03cee23bc46719c9c87e7382a102ccf6d) python312Packages.ush: switch to pypa builder
* [`a1f1c849`](https://github.com/NixOS/nixpkgs/commit/a1f1c849ad9d67ad0151f610e2955b43ffdfd7e8) vscode-extensions.antyos.openscad 1.1.1 → 1.3.1
* [`7cbc9118`](https://github.com/NixOS/nixpkgs/commit/7cbc9118127ab4501c88252d129bc09b53537569) gossip: 0.11.2 -> 0.12.0
* [`3cc9bcbf`](https://github.com/NixOS/nixpkgs/commit/3cc9bcbf33d3d3af63f874d5f90afa1bdf5a1708) gossip: pin to ffmpeg 6
* [`74561ffe`](https://github.com/NixOS/nixpkgs/commit/74561ffeac40631621af34a6d469c6571a8cdf23) python3Packages.torch-tb-profiler: 0.3.1 -> 0.4.0
* [`64a6e829`](https://github.com/NixOS/nixpkgs/commit/64a6e8292aa39a664743d20b520173320dcea6bc) nixos/acme: Set /var/lib/acme permissions to 755
* [`ff427fbc`](https://github.com/NixOS/nixpkgs/commit/ff427fbc30c42fe270f1ac029320be2d13bff8ca) zed-editor: 0.159.7 -> 0.159.10
* [`b0519b43`](https://github.com/NixOS/nixpkgs/commit/b0519b43188f7b08e14f9b81bae2cdda730673c6) mariadb: 10.5.27, 10.6.20, 10.11.10, 11.4.4
* [`4457d955`](https://github.com/NixOS/nixpkgs/commit/4457d955d01a4f8e0187448063e146bc36e4745f) yabai: refactor to new sdk pattern
* [`88eb0fcc`](https://github.com/NixOS/nixpkgs/commit/88eb0fcca4d46cb4f2211394b213d6175add582e) yabai: switch to apple-sdk_15
* [`b2607dee`](https://github.com/NixOS/nixpkgs/commit/b2607dee162817714049169785310ea52684cb0f) yabai: add versionCheckHook
* [`550d4a2a`](https://github.com/NixOS/nixpkgs/commit/550d4a2af43d74f0fded665f01f3b4651af835d7) yabai: modernize
* [`af9131fa`](https://github.com/NixOS/nixpkgs/commit/af9131fa6de1bd184ad5e8d20a4034c425d3b7d2) yabai: 7.1.4 -> 7.1.5
* [`2610fc98`](https://github.com/NixOS/nixpkgs/commit/2610fc983ab0d678a0914a3b61367a4ead11777b) objfw: 1.1.7 -> 1.2
* [`45bb433c`](https://github.com/NixOS/nixpkgs/commit/45bb433c54e34ce846f5bfcaee42c6359ad56ca0) paperless-ngx: 2.13.2 -> 2.13.4
* [`46cce423`](https://github.com/NixOS/nixpkgs/commit/46cce423ec19bb9418a9c2fdcdbec058965cbdb6) atkinson-monolegible:init at 0-unstable-2023-02-27
* [`f9c15bce`](https://github.com/NixOS/nixpkgs/commit/f9c15bce32490d67e25aa14fb5a876c65b2f681d) lightningcss: 1.27.0 → 1.28.0
* [`e15b1502`](https://github.com/NixOS/nixpkgs/commit/e15b1502f8540d95ebea6d0d8c37e89e4f9423d9) fastfetch: 2.28.0 -> 2.29.0
* [`9a4e945c`](https://github.com/NixOS/nixpkgs/commit/9a4e945cebb27a363a4d150affdade25258d3207) nixos/tests/forgejo: fix after git v2.47 bump
* [`9aeabf40`](https://github.com/NixOS/nixpkgs/commit/9aeabf401af8aa70f73cd9713ec5c544f985f697) yt-dlp: 2024.10.22 -> 2024.11.4, use constant changlog URL
* [`4b13779f`](https://github.com/NixOS/nixpkgs/commit/4b13779f33214e035deeda6097b5b9db019e48a0) python3Packages.subliminal: mark as not broken
* [`e2dac786`](https://github.com/NixOS/nixpkgs/commit/e2dac786f09eb7374c5c225a49b8a3787e3f166b) linux-wallpaperengine: init at 0-unstable-2024-10-13
* [`88e1c5d4`](https://github.com/NixOS/nixpkgs/commit/88e1c5d40464bb8a0b329efb77e86b963c5e97e8) plandex-server: add git to path
* [`5058251d`](https://github.com/NixOS/nixpkgs/commit/5058251dd857233ac0e7f191583d957400d87696) CONTRIBUTING.md: Add note about nixpkgs-merge-bot restricted authors
* [`5e5192e6`](https://github.com/NixOS/nixpkgs/commit/5e5192e6c12a630e592e38b2a119933463b8b8cb) taisei: move to pkgs/by-name
* [`daf3bcfb`](https://github.com/NixOS/nixpkgs/commit/daf3bcfbd363375a492442d0e57c1e8318594302) taisei: format with nixfmt
* [`260b34e1`](https://github.com/NixOS/nixpkgs/commit/260b34e1504d91a996ac4c3f6f24bffbbc211f59) butterfly: init at 2.2.1
* [`e8fd2805`](https://github.com/NixOS/nixpkgs/commit/e8fd280532ab2bd7d88679db92760cd06748faf4) maid: update dependencies
* [`6d3cc742`](https://github.com/NixOS/nixpkgs/commit/6d3cc7422121699491d4368c153c2928d49d9bc8) spnavcfg: add X11 to the build inputs
* [`1ffa3b64`](https://github.com/NixOS/nixpkgs/commit/1ffa3b644df17a5ec4fa18bfeac36022c7e2e970) taisei: refactor
* [`fb382172`](https://github.com/NixOS/nixpkgs/commit/fb3821722e9cb3311cdcff40e6d89595c7e9c90b) taisei: add Gliczy as maintainer
* [`0e68d7bd`](https://github.com/NixOS/nixpkgs/commit/0e68d7bdfb1640f1053cda5fd06be862520064dd) lightningcss: enable aarch64-linux builds and set platform to all
* [`dd086ca4`](https://github.com/NixOS/nixpkgs/commit/dd086ca402002aa4516640774072ec6ee1ecaa28) msi-ec: 0-unstable-2024-09-19 -> 0-unstable-2024-11-04
* [`2e99cc48`](https://github.com/NixOS/nixpkgs/commit/2e99cc48c7715a036b89f93c3dd297de4b386368) transmission_4: update for the new SDK pattern on Darwin
* [`174ef9b8`](https://github.com/NixOS/nixpkgs/commit/174ef9b84ac4286e298d9283f5a2ca27baafb258) transmission_4: fix build on Darwin
* [`26c3a41f`](https://github.com/NixOS/nixpkgs/commit/26c3a41f6bbcd14e0e94da776d7f07ebfef62bea) python312Packages.moto: add (trivial) `sns` optional dependency
* [`37226af6`](https://github.com/NixOS/nixpkgs/commit/37226af6e86f5046ae4d11d959dfc0b51be9a32a) python312Packages.great-expectations: init at 1.2.1
* [`137f3729`](https://github.com/NixOS/nixpkgs/commit/137f3729455cee4ee75ac38c7b18b936a3e94db8) vimPlugins.lze: 0.1.4 -> 0.4.4 ([NixOS/nixpkgs⁠#353109](https://togithub.com/NixOS/nixpkgs/issues/353109))
* [`ae7f50cd`](https://github.com/NixOS/nixpkgs/commit/ae7f50cd7d4b8a1bc0d65955eced688f7393d6df) fritz-exporter: add attrs to relaxed deps
* [`e2210c0e`](https://github.com/NixOS/nixpkgs/commit/e2210c0ebc861bd60710ea4008316297411d3d6a) dhcpcd:  10.0.6 -> 10.1.0
* [`6c5287eb`](https://github.com/NixOS/nixpkgs/commit/6c5287eb04e3a7eeca944e75afd7d66c8086eeb7) maintainers: add vtimofeenko to maintainer list
* [`0ea31d13`](https://github.com/NixOS/nixpkgs/commit/0ea31d130cc50ed6bb62e201c24705e998bd0547) alacritty: use new darwin SDK pattern
* [`57b696fa`](https://github.com/NixOS/nixpkgs/commit/57b696fa7d98ee756f970008f29e6ad741b2d030) hilbish: 2.3.2 -> 2.3.3
* [`ccda0ce1`](https://github.com/NixOS/nixpkgs/commit/ccda0ce11855ffabf1e7629fdad0956cb1f6eea3) python312Packages.aiortm: 0.9.22 -> 0.9.24
* [`a475aebc`](https://github.com/NixOS/nixpkgs/commit/a475aebcaacc282141b7c6b875a6185828cd0f31) python312Packages.bc-detect-secrets: 1.5.17 -> 1.5.18
* [`560626d0`](https://github.com/NixOS/nixpkgs/commit/560626d0d617069bee5f0609257eb5f02b3eba07) python312Packages.mando: 0.7.1 -> 0.8.2 ([NixOS/nixpkgs⁠#352777](https://togithub.com/NixOS/nixpkgs/issues/352777))
* [`0a4aaa9d`](https://github.com/NixOS/nixpkgs/commit/0a4aaa9d9a73735890cc7dca8db14c1aea0cb189) pkgs/stdenv/freebsd: update x86_64-unknown-freebsd bootstrap-files
* [`05e26cb3`](https://github.com/NixOS/nixpkgs/commit/05e26cb37392ea4f706b3220ef7b017a7a4aa57d) python312Packages.xmlschema: 3.4.2 -> 3.4.3 ([NixOS/nixpkgs⁠#352700](https://togithub.com/NixOS/nixpkgs/issues/352700))
* [`4f9f5816`](https://github.com/NixOS/nixpkgs/commit/4f9f5816d3620a7347448e638993c9d01d63eca3) python312Packages.bloodyad: 2.0.7 -> 2.0.8
* [`6760f0a7`](https://github.com/NixOS/nixpkgs/commit/6760f0a702b1fa562be952451e4cad3ddece665e) brave: fix qt theming ([NixOS/nixpkgs⁠#352667](https://togithub.com/NixOS/nixpkgs/issues/352667))
* [`b818e0cb`](https://github.com/NixOS/nixpkgs/commit/b818e0cbb858871397a7c5a07168c15e0119b602) docker-buildx: 0.17.1 -> 0.18.0 ([NixOS/nixpkgs⁠#352575](https://togithub.com/NixOS/nixpkgs/issues/352575))
* [`6f42eff1`](https://github.com/NixOS/nixpkgs/commit/6f42eff1defa62cd751cba0988069b9e08dc475f) ruby_3_2: 3.2.4 -> 3.2.5 ([NixOS/nixpkgs⁠#352560](https://togithub.com/NixOS/nixpkgs/issues/352560))
* [`23fd859f`](https://github.com/NixOS/nixpkgs/commit/23fd859f452bc1e6050b88084b5203d5ab33c96f) taisei: 1.3.2 -> 1.4.2
* [`0bd69ba7`](https://github.com/NixOS/nixpkgs/commit/0bd69ba761886624040c3d16c90ec95dca49d941) pizauth: fix build on darwin
* [`bdf04401`](https://github.com/NixOS/nixpkgs/commit/bdf044013a681ead5978087cf2bd2ecf48b9a29d) vte: 0.78.0 -> 0.78.1, fix darwin build
* [`ce8581c2`](https://github.com/NixOS/nixpkgs/commit/ce8581c206a1583f84177eae23dad7d6fd25a55f) python312Packages.fastapi-sso: 0.15.0 -> 0.17.0
* [`525386d0`](https://github.com/NixOS/nixpkgs/commit/525386d0eb4bdca9157e914e64181e9dc0e25ef2) python312Packages.monzopy: 1.3.2 -> 1.4.2
* [`254bf2a3`](https://github.com/NixOS/nixpkgs/commit/254bf2a34bc57849aefe0c438b6c00f30192368a) rio: fix darwin build by providing libutil
* [`224709bb`](https://github.com/NixOS/nixpkgs/commit/224709bbf01f39ba5137d38db8257f8a8ba8a948) rio: format with nixfmt-rfc-style
* [`982d526b`](https://github.com/NixOS/nixpkgs/commit/982d526b78a70834bf3df0675cdfef86ab1dba45) rio: use apple-sdk_11 on x86_64 too
* [`12437967`](https://github.com/NixOS/nixpkgs/commit/12437967ee8ca9a96576eb9e33462381e8913266) vector: readd missing mig command on darwin
* [`132023e2`](https://github.com/NixOS/nixpkgs/commit/132023e223405a165edac815261a56132d36d74b) python312Packages.appimage: init at 1.0.0
* [`a19f263b`](https://github.com/NixOS/nixpkgs/commit/a19f263bccb947c5bcd1f77902424ab9cb43202e) ssh-mitm: 4.1.1 -> 5.0.0
* [`2748fb9a`](https://github.com/NixOS/nixpkgs/commit/2748fb9a0b7cd06bba887ceb2c1cdae4855b7deb) vimPlugins.blink-cmp: 0.5.0 -> 0.5.1
* [`6d0030ad`](https://github.com/NixOS/nixpkgs/commit/6d0030ad09fa3ff485d54a7892807ca65cc556d9) rPackages.scorematchingad: fixed build
* [`c4c7d040`](https://github.com/NixOS/nixpkgs/commit/c4c7d040109e6b663782d28921d3a63654e13678) rPackages.timeless: fixed build
* [`3cd91c00`](https://github.com/NixOS/nixpkgs/commit/3cd91c00ba9e2428b4f83953428d17af5a1cdb0a) rPackages.ravetools: fixed build
* [`b975612e`](https://github.com/NixOS/nixpkgs/commit/b975612ef13f177db2d8b093b055e87f7c121c55) python312Packages.django-haystack: disable tests on darwin
* [`7d3e3f0d`](https://github.com/NixOS/nixpkgs/commit/7d3e3f0d6161c6bac8471bb9eefa6ae46b0dadc3) python312Packages.pyfxa: fix build, add missing dependencies
* [`f5048d4a`](https://github.com/NixOS/nixpkgs/commit/f5048d4a6daf569c3e8cf8b3f6a36725a1b0f0f2) python312Packages.django-silk: 5.2.0 -> 5.3.0
* [`87447256`](https://github.com/NixOS/nixpkgs/commit/87447256cd38dc4ec398e6b2a55ea40b58a4f1e4) obsidian: 1.7.4 -> 1.7.5
* [`b4832813`](https://github.com/NixOS/nixpkgs/commit/b4832813864c4d7e84f3cbeed6d6061013c6dc4f) empty-epsilon: 2024.06.20 -> 2024.08.09
* [`d8aeca87`](https://github.com/NixOS/nixpkgs/commit/d8aeca87e695a8e4cae869e800b7f897c2d43e7b) obsidian: use magick instead of convert
* [`5b136316`](https://github.com/NixOS/nixpkgs/commit/5b136316aacadd0447dc24ba04c449d287ca8cea) pkgsi686Linux.swtpm: pull upstream 64-bit file api fix
* [`9904e239`](https://github.com/NixOS/nixpkgs/commit/9904e2396682dcf955b6795152ddb4edefe6ba72) goldendict-ng: 24.09.0 -> 24.09.1
* [`a685fde6`](https://github.com/NixOS/nixpkgs/commit/a685fde6db96c5cc91484b123e71bb514030ff23) bruno: switch to apple-sdk_11
* [`3c1f559d`](https://github.com/NixOS/nixpkgs/commit/3c1f559d4f7efa8be0259bf2f97adc80f6bffb3e) wakapi: 2.12.1 -> 2.12.2
* [`7c69bb5c`](https://github.com/NixOS/nixpkgs/commit/7c69bb5c155da045dfe8e77b02bdd94b3df035f6) aces-container: fix darwin build
* [`9da04cc7`](https://github.com/NixOS/nixpkgs/commit/9da04cc7dbadb156efa0aeba2e8d0f3fb75a874b) afuse: format
* [`9de9d365`](https://github.com/NixOS/nixpkgs/commit/9de9d365273527d9e96a2ecc3c2233776642a893) capstone: 5.0.1 -> 5.0.3
* [`02f20000`](https://github.com/NixOS/nixpkgs/commit/02f20000a25fd19ddf49c0915496285d44cd5dc5) cctools: set Darwin team as maintainers
* [`e7d6ea8c`](https://github.com/NixOS/nixpkgs/commit/e7d6ea8ca61cd654dd8a5a5087ad3925a0560299) ld64: set Darwin team as maintainers
* [`f225300b`](https://github.com/NixOS/nixpkgs/commit/f225300be4c95a1b03031e5522f389b9ba42a152) aribb25: format
* [`2cc02eca`](https://github.com/NixOS/nixpkgs/commit/2cc02eca4defd10db8e770bf9204bc5688c89d27) aribb25: remove xcbuild
* [`239ef2ff`](https://github.com/NixOS/nixpkgs/commit/239ef2ff2d89e2f164b485f72a50ff01866f9d25) firefox-unwrapped: 132.0 -> 132.0.1
* [`29342f3a`](https://github.com/NixOS/nixpkgs/commit/29342f3a479d57d70379951c011e7a3904f5fb06) bacon: 3.0.0 -> 3.2.0
* [`3e9783d8`](https://github.com/NixOS/nixpkgs/commit/3e9783d8cc60378d1a474032343c5cede617bc2b) firefox-bin-unwrapped: 132.0 -> 132.0.1
* [`37058d40`](https://github.com/NixOS/nixpkgs/commit/37058d400c5f5161da1535bbf74c77b8722c49a0) cosmic-edit: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`ff17208a`](https://github.com/NixOS/nixpkgs/commit/ff17208a821a012ca8c29902d98f631f0286da03) cfn-nag: fix gemfile so that binaries are generated
* [`c9c80336`](https://github.com/NixOS/nixpkgs/commit/c9c80336d46ca6c7e90d4de1ff1e583a4cac5fc6) upwork: 5.8.0.33 -> 5.8.0.35
* [`d42d2761`](https://github.com/NixOS/nixpkgs/commit/d42d2761923ecf55fd4932f7524507cb1e375825) discord: bump all versions
* [`dc83bfd6`](https://github.com/NixOS/nixpkgs/commit/dc83bfd616a47a54921556a117561ebdef2fd1af) cosmic-term: 1.0.0-alpha.2 -> 1.0.0-alpha.3
* [`7495125f`](https://github.com/NixOS/nixpkgs/commit/7495125f91eaf57f565196c2183c3be3b670d8cf) bat: switch to apple-sdk_11
* [`bda767ef`](https://github.com/NixOS/nixpkgs/commit/bda767efc949a2d50ad48b7b14d1524ce59f68d7) lsd: switch to apple-sdk_11
* [`2aa42ec6`](https://github.com/NixOS/nixpkgs/commit/2aa42ec64465970a2dd12b2e6e83a168c599fea7) delta: switch to apple-sdk_11
* [`580741f0`](https://github.com/NixOS/nixpkgs/commit/580741f0fa29e698ee6b88af35b917e1e3c00ea8) git-interactive-rebase-tool: switch to apple-sdk_11
* [`dbcea082`](https://github.com/NixOS/nixpkgs/commit/dbcea0828a0865b89534a81f1e3df3f5ea780a9c) vimv-rs: switch to apple-sdk_11
* [`8e8f6c00`](https://github.com/NixOS/nixpkgs/commit/8e8f6c00e85cf1beb457917ccd9a14d064f4bd41) ripgrep: switch to apple-sdk_11
* [`0ae04baf`](https://github.com/NixOS/nixpkgs/commit/0ae04baf296e7f569347567846951666d194bfe6) granted: 0.35.2 -> 0.36.0
* [`e08f1da4`](https://github.com/NixOS/nixpkgs/commit/e08f1da4a653b69b42e3dd80362a6748e1d1538c) asleap: format
* [`7c1cc43d`](https://github.com/NixOS/nixpkgs/commit/7c1cc43d50ec4d51004ffa815341ab4a33010730) asleap: modernize
* [`29145be6`](https://github.com/NixOS/nixpkgs/commit/29145be6a7900733f43b8dc219f4b755603a1018) asleap: add meta.platforms
* [`67c5af53`](https://github.com/NixOS/nixpkgs/commit/67c5af53ba46f760b42bd25eeec7e512e1420b0e) asleap: move to by-name
* [`8ec0aa7c`](https://github.com/NixOS/nixpkgs/commit/8ec0aa7cb6b010f57be015b6633e2862271f2e08) aribb25: fix darwin
* [`3de54e3d`](https://github.com/NixOS/nixpkgs/commit/3de54e3d7408cc69ac80a8668edfcdb7986ca4f3) ats2: format
* [`f4f2eb89`](https://github.com/NixOS/nixpkgs/commit/f4f2eb89bf4a6ba7bf13760893c69a3ca62127c7) ats2: fix darwin build
* [`6bd632f1`](https://github.com/NixOS/nixpkgs/commit/6bd632f1646c3ee798e2e09c9fc3ad265436e3f8) ats2: move to by-name
* [`bab7ef30`](https://github.com/NixOS/nixpkgs/commit/bab7ef307cb11e2d2dc9b9ddf2d1de68f220ed45) pythonImportsCheckHook: lint with ShellCheck
* [`ccb418b6`](https://github.com/NixOS/nixpkgs/commit/ccb418b69938ebdac9337baa9cdceeb43b3497cd) pythonNamespacesHook: lint with ShellCheck
* [`e4f2f9dd`](https://github.com/NixOS/nixpkgs/commit/e4f2f9dd22db433d54c9c3e25fc6cee6c3471d09) pythonOutputDistHook: lint with ShellCheck
* [`3a79bc3a`](https://github.com/NixOS/nixpkgs/commit/3a79bc3aee323c79b534cb5ca80d85daf60b4182) pythonRelaxDepsHook: handle attributes `__structuredAttrs`-agnostically
* [`29c08ada`](https://github.com/NixOS/nixpkgs/commit/29c08adae171f1c273a0a15c00068205a9965bf2) pythonRelaxDepsHook: lint with ShellCheck
* [`65293f42`](https://github.com/NixOS/nixpkgs/commit/65293f424779e4df5d892e955dd03cf8d0ed84b0) pythonRemoveTestDirHook: lint with ShellCheck
* [`e32457af`](https://github.com/NixOS/nixpkgs/commit/e32457af0c9de65a4d3f57afd8b4c238da65d07a) setuptoolsRustHook: lint with ShellCheck
* [`6597b74f`](https://github.com/NixOS/nixpkgs/commit/6597b74fea10a79f09ef3fbcf02620e238992845) pypaBuildHook.tests: modernize
* [`215b3023`](https://github.com/NixOS/nixpkgs/commit/215b30238e606155f93af78d877f56a42795cfd5) spacebar: format
* [`b909deee`](https://github.com/NixOS/nixpkgs/commit/b909deee7fd9682cb4584e727e2fb3b3348ddc99) spacebar: switch to apple-sdk_12
* [`18176d9f`](https://github.com/NixOS/nixpkgs/commit/18176d9f116ffcae457f9a4b4a339e30f5c7e775) spacebar: move to by-name
* [`ddc51f70`](https://github.com/NixOS/nixpkgs/commit/ddc51f709f0a84fa78231e56b5b15e98da620afa) home-assistant-custom-components.prometheus_sensor: 1.1.0 -> 1.1.2
* [`5955b4fe`](https://github.com/NixOS/nixpkgs/commit/5955b4feac7f20d4a271a44c05b244d026d5818c) cargo-deadlinks: fix build
* [`aa689c67`](https://github.com/NixOS/nixpkgs/commit/aa689c679c90ea9a84c99cfb1ef5a7ab4ddbbf9b) dialect: 2.4.2 -> 2.5.0 ([NixOS/nixpkgs⁠#353294](https://togithub.com/NixOS/nixpkgs/issues/353294))
* [`3aff222f`](https://github.com/NixOS/nixpkgs/commit/3aff222fd7ab412247a162ad2d8a5f5e71d0e156) berry: format
* [`483eb12a`](https://github.com/NixOS/nixpkgs/commit/483eb12ac9a3b137c730c927a7a1929e152cc6fc) snowflake-cli: init at 3.1.0
* [`75943b09`](https://github.com/NixOS/nixpkgs/commit/75943b097172cdeae16c934471dafd28a9bf23aa) linuxPackages.isgx: mark as broken for kernels >= 6.4
* [`9ea79aff`](https://github.com/NixOS/nixpkgs/commit/9ea79affa90e22979324ffb377203add21a41ae6) nixos/profiles/minimal: remove programs.ssh.setXAuthLocation
* [`ae839936`](https://github.com/NixOS/nixpkgs/commit/ae839936d9cd209767175dfa498db283812f2976) home-assistant-custom-lovelace-modules.universal-remote-card: 4.1.2 -> 4.1.3
* [`476d7434`](https://github.com/NixOS/nixpkgs/commit/476d7434dea6ed1404b425cfdc5034916894f010) vector: format with nixfmt-rfc-style
* [`3f68a9fc`](https://github.com/NixOS/nixpkgs/commit/3f68a9fca12e9c7881cee68aada847c7a99dbd37) python312Packages.tokenizers: 0.20.1 -> 0.20.2
* [`2a27e905`](https://github.com/NixOS/nixpkgs/commit/2a27e9054cb808e21e05fe819026a48a63f9a77a) qt6.qtdeclarative: backport a patch fixing crashes in Kirigami apps
* [`b048be05`](https://github.com/NixOS/nixpkgs/commit/b048be052ccff215e125b9fbef825f296dcbe599) Reapply "less: Fix withSecure regression"
* [`99ad7e76`](https://github.com/NixOS/nixpkgs/commit/99ad7e764915be4b8261c75014c0409e5b916245) bant: add passthru.updateScript
* [`c63dfcd3`](https://github.com/NixOS/nixpkgs/commit/c63dfcd3bb0995ad67e43fa8d9d1da65851ccfe3) bant: 0.1.7 -> 0.1.8
* [`73befd55`](https://github.com/NixOS/nixpkgs/commit/73befd559eabd53c289e21364c39d01eb0a6dea6) python312Packages.sagemaker: relax attrs dependency to fix build
* [`7614e2c6`](https://github.com/NixOS/nixpkgs/commit/7614e2c62f4a0ccf70359e4af73647407b6e4338) yalc: migrate from nodePackages
* [`a10bcc54`](https://github.com/NixOS/nixpkgs/commit/a10bcc549a614afd0f41dc1f5abfe5dd83ab83a4) swayosd: 0-unstable-2024-04-15 -> 0.1.0
* [`18ea4d34`](https://github.com/NixOS/nixpkgs/commit/18ea4d347856280975d37fc035c31a4f1cc93f24) rapidjson: remove uses of `with`
* [`1ca7aa23`](https://github.com/NixOS/nixpkgs/commit/1ca7aa23333dd594f4e072948badbce316b282a2) jetbrains-toolbox: add update script
* [`a614e900`](https://github.com/NixOS/nixpkgs/commit/a614e9006e01c0c05769eb1062d39ab9ae6101e0) jetbrains-toolbox: 2.4.1.32573 -> 2.5.1.34629
* [`00a0b29d`](https://github.com/NixOS/nixpkgs/commit/00a0b29d983df98bed781ae4f531ea6fc41d4d86) lunatask: nixfmt
* [`e3c59b5a`](https://github.com/NixOS/nixpkgs/commit/e3c59b5a49ce61fd7d8b62f3342bebc1ef6e7b83) colmena: only depend on one nix version
* [`71408df7`](https://github.com/NixOS/nixpkgs/commit/71408df70fd5bfbc0e5fc3776a942e2b0b93dad6) tamarin-prover: 1.8.0 → 1.10.0
* [`43b40f3b`](https://github.com/NixOS/nixpkgs/commit/43b40f3ba2bc2fe7c24472736b65b64189fee857) geolite-legacy: 20230901 → 20240720
* [`e3952520`](https://github.com/NixOS/nixpkgs/commit/e395252057a970084698e7204de03d890a7a0e2a) geolite-legacy: reformat according to rfc
* [`e9d417cd`](https://github.com/NixOS/nixpkgs/commit/e9d417cdd14b2bf9dcd09d0a396d6489f898958b) limesctl: drop
* [`0acd19c9`](https://github.com/NixOS/nixpkgs/commit/0acd19c9fc147d487154242239bd851c67c4b142) onionshare: fix runtime
* [`a96e4d9b`](https://github.com/NixOS/nixpkgs/commit/a96e4d9bfe337cf7b795658ee7409811094a2196) docker: use lib.versionOlder in literalExpression
* [`c8b3472f`](https://github.com/NixOS/nixpkgs/commit/c8b3472f1c59dcda1072a6a8cda7f77d34d7469a) rPackages.OpenCL: fix build
* [`4f8361ef`](https://github.com/NixOS/nixpkgs/commit/4f8361ef85a75f9158e41b1aeaa110b36b901033) gnomeExtensions.gsconnect: adopt by doronbehar
* [`035da94e`](https://github.com/NixOS/nixpkgs/commit/035da94ea9119220235b88187ef280953c40106f) gnomeExtensions.gsconnect: 57 -> 58
* [`9de71c61`](https://github.com/NixOS/nixpkgs/commit/9de71c61f5e87e35c0017a0dcc90a47977ecf452) lunatask: move to pkgs/by-name
* [`95e92966`](https://github.com/NixOS/nixpkgs/commit/95e929663d5121d52ca2a631e11e3b385117bca9) lunatask: 2.0.11 -> 2.0.12
* [`674769e6`](https://github.com/NixOS/nixpkgs/commit/674769e6790a3a8234e13454896baea27a82695b) lunatask: small improvements
* [`e510e227`](https://github.com/NixOS/nixpkgs/commit/e510e227beafdd3bcb5b4a3c0f6feefcb0d40c21) kitty: Binary wrap kitty, and sign on darwin
* [`7d1abc0f`](https://github.com/NixOS/nixpkgs/commit/7d1abc0fc5a6c07c1b8942f92c377a016be34174) musescore: apple-sdk migration, removed portaudio override
* [`82cfe011`](https://github.com/NixOS/nixpkgs/commit/82cfe011c4aff66538c60aac5648ff05ab7bdd31) lunatask: adopt
* [`f23d794c`](https://github.com/NixOS/nixpkgs/commit/f23d794c07dbf84289b84218eb235b3725121a93) python3Packages.irc: build fix for Python 3.11
* [`f919d20f`](https://github.com/NixOS/nixpkgs/commit/f919d20f12a2e38d4e20ed11d132ed92a9edea2f) lazysql: fix incorrect version output ([NixOS/nixpkgs⁠#353654](https://togithub.com/NixOS/nixpkgs/issues/353654))
* [`209e024a`](https://github.com/NixOS/nixpkgs/commit/209e024a2d470c997b6bff423a345d4d8724d877) uv: 0.4.29 -> 0.4.30
* [`7fe77273`](https://github.com/NixOS/nixpkgs/commit/7fe7727384b23dd58a3b115e7642db7ec842d60c) kafka-delta-ingest: unstable-2021-12-08 -> 0-unstable-2024-11-05
* [`69d3ba44`](https://github.com/NixOS/nixpkgs/commit/69d3ba44662fab5bc6fd0d81b8fabe6c23013854) forgejo: remove `refs/tags/` from github release `meta.changelog`
* [`8fff01c7`](https://github.com/NixOS/nixpkgs/commit/8fff01c7e80f24d515775aea05bacfaf81bcf55b) komac: remove `refs/tags/` from github release `meta.changelog`
* [`747b0ddc`](https://github.com/NixOS/nixpkgs/commit/747b0ddc1747f63a98267028669be0e334ec46c8) python312Packages.xdg-base-dirs: remove `refs/tags/` from github release `meta.changelog`
* [`ead2fda6`](https://github.com/NixOS/nixpkgs/commit/ead2fda64c1b26e43dc32e3c03c19059f7b7f013) typst: remove `refs/tags/` from github release `meta.changelog`
* [`2ec380a3`](https://github.com/NixOS/nixpkgs/commit/2ec380a34d8de15e1053cec472f58b79bb643617) equibop: remove `refs/tags/` from github release `meta.changelog`
* [`a3b81267`](https://github.com/NixOS/nixpkgs/commit/a3b81267aaa0f5aa70c9275bd305fdda581cec8f) mujoco: 3.2.4 -> 3.2.5
* [`975ae5ec`](https://github.com/NixOS/nixpkgs/commit/975ae5ec7eb56363e35a60b7185053c9534b20b3) python312Packages.tldextract: 5.1.2 -> 5.1.3
* [`ee673e60`](https://github.com/NixOS/nixpkgs/commit/ee673e603c986cbdb444e0e656d6e3c8e3f13c12) python312Packages.radon: fix build by relaxing mando
* [`a76a5d50`](https://github.com/NixOS/nixpkgs/commit/a76a5d50b50a19688d939457befe213bf664656b) python312Packages.reolink-aio: 0.10.1 -> 0.10.3
* [`28569cf9`](https://github.com/NixOS/nixpkgs/commit/28569cf91d0d8ad6036f197e2496f288d2b3b804) python312Packages.uiprotect: 6.3.2 -> 6.4.0
* [`a36b4d9a`](https://github.com/NixOS/nixpkgs/commit/a36b4d9ac9e2f4c42b145685a31ac8b58776e8cb) wl-screenrec: pin ffmpeg 6
* [`df58e0e3`](https://github.com/NixOS/nixpkgs/commit/df58e0e34da77b0ee3909c9687406f25756dd229) python312Packages.llm: 0.16 -> 0.17.1
* [`62a81793`](https://github.com/NixOS/nixpkgs/commit/62a8179390ca211192394643aeed1f3a57de0796) rPackages.mcrPioda: fixed build
* [`cb11b48c`](https://github.com/NixOS/nixpkgs/commit/cb11b48c1bab856a7b73a9074b13cd7567c8d982) lemurs: fix build error caused by https://github.com/rust-lang/rust/issues/115010
* [`abeafd2a`](https://github.com/NixOS/nixpkgs/commit/abeafd2a72c3451a7ef45957bbbf6ddef73ae1b3) nixos/kanidm: allow not setting bindaddress
* [`dfd82227`](https://github.com/NixOS/nixpkgs/commit/dfd822276d3088a6fd1072983d99b7b029497315) raycast: 1.84.10 -> 1.84.12
* [`263dc0c3`](https://github.com/NixOS/nixpkgs/commit/263dc0c329c55980df9de0cfae9510b21ac4b942) maude: 3.3.1 -> 3.4
* [`cd11f9b6`](https://github.com/NixOS/nixpkgs/commit/cd11f9b61267c5d50ecf75e17007788f8bd3d91f) lndinit: 0.1.5-beta -> 0.1.22-beta
* [`851849e3`](https://github.com/NixOS/nixpkgs/commit/851849e3c6bb8376b870d7292ee1412c54b42acc) vimPlugins.muren-nvim: init at 2023-08-26
* [`5ddc8ccd`](https://github.com/NixOS/nixpkgs/commit/5ddc8ccdc0af1c67ae17e8535f1143a7884e514d) lamdera: 1.3.1 -> 1.3.2
* [`53b356fc`](https://github.com/NixOS/nixpkgs/commit/53b356fcd79884d8f08f56e46ab467512eaeca92) python312Packages.django_5: 5.1.2 -> 5.1.3
* [`c771f151`](https://github.com/NixOS/nixpkgs/commit/c771f151f8bf7e83894f622c99d0a4c469bcb346) cfn-nag: added meta.mainProgram
* [`3b9afaf1`](https://github.com/NixOS/nixpkgs/commit/3b9afaf19cebbc03f907dc90a872f82166cbd5e3) goreleaser: 2.3.2 -> 2.4.4, drop inactive maintainers
* [`519cea42`](https://github.com/NixOS/nixpkgs/commit/519cea4260a1f616181adf58d3fca00e26856575) guile-sdl: mark broken on darwin
* [`0004c3c8`](https://github.com/NixOS/nixpkgs/commit/0004c3c898ea34508594a30cf0b16ab87a83237c) python312Packages.yaspin: fix build, set pyproject = true
* [`abcf5fb9`](https://github.com/NixOS/nixpkgs/commit/abcf5fb9b9439715081b45642deccd7c95ab0b30) maintainer-list: added mathstlouis
* [`9642cf41`](https://github.com/NixOS/nixpkgs/commit/9642cf41060a8fef6a8ed61adf9600accbe1da0c) cfn-nag: added mathstlouis to maintainers
* [`9423fce7`](https://github.com/NixOS/nixpkgs/commit/9423fce738237440115d9b07e1724aee47d4a5b5) element-desktop: 1.11.82 -> 1.11.84
* [`3e885002`](https://github.com/NixOS/nixpkgs/commit/3e8850024d015edd8d4a105c668bd9dc0a3c3425) actionlint: 1.7.3 -> 1.7.4
* [`2a55a31b`](https://github.com/NixOS/nixpkgs/commit/2a55a31be3c1ef661f804aa89537a876f3c3738a) kdePackages: Plasma 6.2.2 -> 6.2.3
* [`4bb99d03`](https://github.com/NixOS/nixpkgs/commit/4bb99d0350cfeb3bad2458d4f2052a74e8a02b33) php{81,82,83,84}Extensions.pdo_dblib: fix broken condition
* [`2a91cc49`](https://github.com/NixOS/nixpkgs/commit/2a91cc49b7d8b857311b0a72a5f8197861638f05) dnscontrol: 4.14.0 -> 4.14.2
* [`31fd3a6f`](https://github.com/NixOS/nixpkgs/commit/31fd3a6fe95deee382055dcc4244c2cfa20ef17b) cocoapods: 1.15.1 -> 1.16.2
* [`3592d2c1`](https://github.com/NixOS/nixpkgs/commit/3592d2c1c29e6c3d437ce37b577c21f85fd0d2fc) nextcloud-client: 3.14.2 -> 3.14.3
* [`3f2bbfd6`](https://github.com/NixOS/nixpkgs/commit/3f2bbfd68b794d0dfa24f2ebd0de99284d5dde51) nixos/openvpn3: add `/etc/openvpn3/configs` to `systemd.tmpfiles`
* [`0044a230`](https://github.com/NixOS/nixpkgs/commit/0044a23026daed7a1b5ee4658d35c1427f57da6c) neatvnc: use clickable meta.homepage link, replace pname with string
* [`2dbcd738`](https://github.com/NixOS/nixpkgs/commit/2dbcd73818222ca6c53093c18c1fac232847fc93) python312Packages.flax: 0.9.0 -> 0.10.1
* [`920eac09`](https://github.com/NixOS/nixpkgs/commit/920eac097f5c355adc0321d44f24032b1faa38a7) gfie: init at 4.2
* [`fd454586`](https://github.com/NixOS/nixpkgs/commit/fd45458624e1c4268142d715726218556859ca8c) libamplsolver: mark cross-compile as broken
* [`2415e261`](https://github.com/NixOS/nixpkgs/commit/2415e26111a91016bfcdc85e2371c18ddb34f449) nixos/pipewire: mention possible integration with pulseaudio
* [`e39c6aba`](https://github.com/NixOS/nixpkgs/commit/e39c6abaacb6d5e4da0da693d748ed59d3e4e975) mmex: 1.6.3 -> 1.8.0
* [`c803ed59`](https://github.com/NixOS/nixpkgs/commit/c803ed5996fb0457e6ddc356e8e499717cbcc211) icloudpd: 1.24.0 -> 1.24.3
* [`d711d8fb`](https://github.com/NixOS/nixpkgs/commit/d711d8fbed8bcfdf715e3e4b40d83a19d10ed80d) python3Packages.srp: 1.0.21 -> 1.0.22
* [`6fc68c21`](https://github.com/NixOS/nixpkgs/commit/6fc68c21e19bf28bbef32533ab30a4399c828659) vscode-extensions.asvetliakov.vscode-neovim: 1.18.13 -> 1.18.14
* [`bbc04afa`](https://github.com/NixOS/nixpkgs/commit/bbc04afa9fcce4ec572708f06878ff4f7276a833) cemu: 2.0-92 -> 2.2
* [`cd31998d`](https://github.com/NixOS/nixpkgs/commit/cd31998dc638930be5a199821257d1737717d6f7) maintainers: change baduhai's name
* [`037d89d1`](https://github.com/NixOS/nixpkgs/commit/037d89d14391df402f64b42ce7cc15880fe67736) kyverno-chainsaw: 0.2.8 -> 0.2.11
* [`37746218`](https://github.com/NixOS/nixpkgs/commit/377462189133351261c27d68439759a4584485ba) meteo-qt: init at 3.4
* [`d2489486`](https://github.com/NixOS/nixpkgs/commit/d24894863c4a6c79e3f8ac753c4055ba3854d34c) python312Packages.markdownify: fix build
* [`b4bdaa19`](https://github.com/NixOS/nixpkgs/commit/b4bdaa19e24400dbfdb2c87e86407f710742a8e6) hof: nixfmt
* [`2a276628`](https://github.com/NixOS/nixpkgs/commit/2a27662845330f07c481baf066053b6b53f5afd8) maintainers: add jhol
* [`c2a6507f`](https://github.com/NixOS/nixpkgs/commit/c2a6507f0591367017d46574884f92493fb01a29) sphinxcontrib-moderncmakedomain init at 3.29.0
* [`408bb50e`](https://github.com/NixOS/nixpkgs/commit/408bb50eb1f0a0404a4b325cef9b4a6e1781d8a3) emacsPackages.org-xlatex: mark as broken without xwidgets
* [`4b4a448a`](https://github.com/NixOS/nixpkgs/commit/4b4a448aa8b46acec19a9ea7042cb1ac7a1a29f0) linuxstopmotion: format with nixpkgs-rfc-style
* [`8d8fb832`](https://github.com/NixOS/nixpkgs/commit/8d8fb832603e955a559b82bc473749a71bf43be2) linuxstopmotion: stop using qt5.mkDerivation
* [`2bd2f80d`](https://github.com/NixOS/nixpkgs/commit/2bd2f80d4a6357410b2fb46b2dfa525b3ebfd1e3) stopmotion: rename from linuxstopmotion
* [`adaa8dad`](https://github.com/NixOS/nixpkgs/commit/adaa8dade54a17cb27e347a06bc30c40563d12c0) stopmotion: 0.8.5 -> 0.8.7
* [`d353f616`](https://github.com/NixOS/nixpkgs/commit/d353f6161f1b303457d35ba9d7b93cd83ae8e5ec) infrastructure-agent: init at 1.57.2
* [`092fef0a`](https://github.com/NixOS/nixpkgs/commit/092fef0ac8b67f8edd3a613c413ffc0bfb6a6786) sidekick: init at 0.6.6
* [`9e9e6c58`](https://github.com/NixOS/nixpkgs/commit/9e9e6c58b75ef05f32fbe947233eefbca400af62) python312Packages.mne-python: unbreak tests
* [`c8df6697`](https://github.com/NixOS/nixpkgs/commit/c8df66973b396186ced7e81f0dd3e475bf77d3b8) xcbuild: look in system toolchain for binaries on `/usr/bin`
* [`7ae8a1e5`](https://github.com/NixOS/nixpkgs/commit/7ae8a1e519de8d316830a73f119c2e19234d7a58) xcbuild: suppress warnings for unknown keys
* [`c6b663c0`](https://github.com/NixOS/nixpkgs/commit/c6b663c00ea7873e56228b0fcac818e87faa4b60) signalbackup-tools: 20241025 -> 20241105-2
* [`1abe027c`](https://github.com/NixOS/nixpkgs/commit/1abe027caad4052ca97bf0eaf1d701f922a25cbb) python312Packages.trimesh: 4.5.1 -> 4.5.2
* [`b68c1144`](https://github.com/NixOS/nixpkgs/commit/b68c1144b0cfe5da73417b878111e217e7cb00e4) python312Packages.pydicom-seg: unbreak tests
* [`012055eb`](https://github.com/NixOS/nixpkgs/commit/012055eb87c6d4aed16deccdcfa5cb335c99005e) systemd-netlogd: init at 1.4.2
* [`54ece522`](https://github.com/NixOS/nixpkgs/commit/54ece522d1a17b07c2a15db8b869056ff9e87d5b) dnsmasq_exporter: build with Go 1.22 for now
* [`86ef6426`](https://github.com/NixOS/nixpkgs/commit/86ef64265ae8307580a89c06e48af2336324dc59) peroxide: build with Go 1.22 for now
* [`2245f840`](https://github.com/NixOS/nixpkgs/commit/2245f840869c1c62ac5227a4a8ce758314f68645) ali: build with Go 1.22 for now
* [`7136dc68`](https://github.com/NixOS/nixpkgs/commit/7136dc6870175f6d0745a7e5a8d8e7a7cb01ba7b) honeytrap: build with Go 1.22 for now
* [`7545cec0`](https://github.com/NixOS/nixpkgs/commit/7545cec01f6dac13768236e107de88fd445343ca) devdash: build with Go 1.22 for now
* [`a4e4e653`](https://github.com/NixOS/nixpkgs/commit/a4e4e65330afb2ecd77d46b13986b0df9513dce5) bettercap: build with Go 1.22 for now
* [`f7a5ca27`](https://github.com/NixOS/nixpkgs/commit/f7a5ca27d855e5f8f7cf27f1d285b70d5d36695f) python311Packages.irc: enable local networking, unbreak on darwin
* [`12d623b9`](https://github.com/NixOS/nixpkgs/commit/12d623b9a89777dba07ed67579d7ba911dd2f85f) berry: fix darwin build
* [`0a8d9266`](https://github.com/NixOS/nixpkgs/commit/0a8d9266d69a2e21c1abb614eaa2acdf3718a097) signalbackup-tools: update to new darwin SDK pattern
* [`265c6a80`](https://github.com/NixOS/nixpkgs/commit/265c6a8046e34560e7486c5ee37dc2bd5ff5e4d0) afuse: fix darwin build
* [`d65243dc`](https://github.com/NixOS/nixpkgs/commit/d65243dcef837233696bedb61e323ca2fd007ecf) nixos/gotosocial: fix failing tests
* [`0d204871`](https://github.com/NixOS/nixpkgs/commit/0d204871a02d071f0a753cef09653bafd0beb635) afuse: replace -> replace-fail
* [`040826a9`](https://github.com/NixOS/nixpkgs/commit/040826a94f4da40261cb7a0383b90627a9c87573) erlang-ls: 0.52.0 -> 1.1.0
* [`b313405a`](https://github.com/NixOS/nixpkgs/commit/b313405a5d18353dd0ce011cee1725e17b7c8756) python312Packages.autopep8: 2.0.4-unstable-2023-10-27 -> 2.3.1
* [`232ece25`](https://github.com/NixOS/nixpkgs/commit/232ece2599ef8541e9cbe3f0da3dce91a40a6c70) maintainers: remove ianmjones
* [`01856f87`](https://github.com/NixOS/nixpkgs/commit/01856f87f67f23720f8bb725d687a7fd7bf2fb60) wl-kbptr: 0.2.1 -> 0.2.3
* [`d19b53a5`](https://github.com/NixOS/nixpkgs/commit/d19b53a5719fad79842768a4322f79a67dd22e44) vidcutter: init at 6.0.5.3
* [`09732d6d`](https://github.com/NixOS/nixpkgs/commit/09732d6d13fbff33c2e0f8deeae0f076a920ffbb) recordbox: init at 0.8.3
* [`fe1a600b`](https://github.com/NixOS/nixpkgs/commit/fe1a600b99704eb18a5009ac36ce216dc3424e64) woomer: init at 0.1.0
* [`ed7052a6`](https://github.com/NixOS/nixpkgs/commit/ed7052a6e23c6a087f3f18d41e600b006daf57d5) prisma-engines: 5.21.1 -> 5.22.0
* [`50962087`](https://github.com/NixOS/nixpkgs/commit/509620877774f4bd9f0306830398579b44c19ebb) expressvpn: fix build
* [`0f94967e`](https://github.com/NixOS/nixpkgs/commit/0f94967ec40ce86a5f2fbf34bef9efd4e8f20540) structorizer: 3.32-22 -> 3.32-23 ([NixOS/nixpkgs⁠#351701](https://togithub.com/NixOS/nixpkgs/issues/351701))
* [`0d812168`](https://github.com/NixOS/nixpkgs/commit/0d8121685f1a6c4672e7ec863b53ac616df9a12a) prisma: 5.21.1 -> 5.22.0
* [`6122ec1a`](https://github.com/NixOS/nixpkgs/commit/6122ec1a8cc98b1f5058bb29e1be446b2d58f42f) aw-watcher-window: mark darwin badPlatform
* [`114019fb`](https://github.com/NixOS/nixpkgs/commit/114019fb417b0256abadc7be35b17e052db8c995) aw-qt: mark darwin badPlatform
* [`ded820fb`](https://github.com/NixOS/nixpkgs/commit/ded820fb0344e1a1e018aec7cdd2b5c9b1ec862b) androidenv: update jdk to 17
* [`6bd3ff78`](https://github.com/NixOS/nixpkgs/commit/6bd3ff78381dbb38887574e7c587336768f8f5bb) gancio: remove mkYarnPackage usage
* [`c0b75b07`](https://github.com/NixOS/nixpkgs/commit/c0b75b073e3ad39228c0c08893aed82643491b94) python312Packages.plotnine: 0.14.0 -> 0.14.1
* [`dcaa6ad0`](https://github.com/NixOS/nixpkgs/commit/dcaa6ad0911590df7bb65a2bb2259538bcb28d47) python312Packages.multiscale-spatial-image: 1.0.1 -> 2.0.0
* [`3bdadc38`](https://github.com/NixOS/nixpkgs/commit/3bdadc381b5ada1d30a9c1ce0f5943beb0a66f97) obs-studio-plugins.advanced-scene-switcher: 1.27.3 -> 1.28.1
* [`10959a82`](https://github.com/NixOS/nixpkgs/commit/10959a82889bc2a8d50bf8e13144f64a20ae6d86) gancioPlugins.telegram-bridge: remove mkYarnPackage usage
* [`0d0690dc`](https://github.com/NixOS/nixpkgs/commit/0d0690dc79bd71174cd834a09643624ff3578321) nixos/bluetooth: reference bluez doc in descriptions
* [`5208a48c`](https://github.com/NixOS/nixpkgs/commit/5208a48c4325d198bb43f4161863ff4064f23844) python312Packages.tokenizers: 0.20.2 -> 0.20.3
* [`89c904bd`](https://github.com/NixOS/nixpkgs/commit/89c904bd204c52f41f01a0b264b2e061d6253178) librewolf: 131.0.3 -> 132.0.1
* [`4d530aeb`](https://github.com/NixOS/nixpkgs/commit/4d530aebe309e78e49b874aa360db7bd330691f9) python312Packages.flaxlib: init at 0.0.1-a1
* [`3047da7e`](https://github.com/NixOS/nixpkgs/commit/3047da7e864064458313de25cce5dc95321081dc) argo-expr: init at 1.1.3
* [`83f0e7c8`](https://github.com/NixOS/nixpkgs/commit/83f0e7c88157886d4c8d2d68e11e14e343d6c81b) freebsd.mkimg: support openbsd partitions guids
* [`6ac55888`](https://github.com/NixOS/nixpkgs/commit/6ac5588872e2d6b9312877df49446d6d77a5485a) python312Packages.pyinstaller: reformat
* [`80d9fe94`](https://github.com/NixOS/nixpkgs/commit/80d9fe945ba6b07d061b35ca4733ade583975937) openbsd.stand: init
* [`16aaf3b4`](https://github.com/NixOS/nixpkgs/commit/16aaf3b433f4b0ada61cb667507f94be171e7719) python312Packages.pyinstaller: 6.10.0 -> 6.11.0
* [`f8cc3fce`](https://github.com/NixOS/nixpkgs/commit/f8cc3fce40257bf564be705251ecf22e29f13769) openbsd.makefs: init
* [`59424d21`](https://github.com/NixOS/nixpkgs/commit/59424d21244d6ac485ddfa5999590640299dcffd) palemoon-bin: 33.4.0.1 -> 33.4.1
* [`4e0e0e7d`](https://github.com/NixOS/nixpkgs/commit/4e0e0e7d5b902581ac43adceebf4f48d338e115b) python312Packages.dm-control: 1.0.24 -> 1.0.25
* [`981dbd7f`](https://github.com/NixOS/nixpkgs/commit/981dbd7f40ca66f0a2d26a749711782f6fb07bff) python312Packages.flaxlib: add update script
* [`94d80c6f`](https://github.com/NixOS/nixpkgs/commit/94d80c6fa435c90a7d4d8a9ede75c2892551851f) python312Packages.transformers: 4.46.1 -> 4.46.2
* [`1fd2711b`](https://github.com/NixOS/nixpkgs/commit/1fd2711b2dcb83b82d868c3bd885c248fb3ff6f6) cargo-v5: init at 0.8.2
* [`fe5219cf`](https://github.com/NixOS/nixpkgs/commit/fe5219cf42fdd3814cb3311a3e997aa42c48fbf1) quickder: move to pkgs/by-name, reformat
* [`a26b3a3b`](https://github.com/NixOS/nixpkgs/commit/a26b3a3bc27a3e05e9cf0e78f1038539ae1b95f3) quickder: pin pyparsing to 3.1.2
* [`c806bfcb`](https://github.com/NixOS/nixpkgs/commit/c806bfcb2f7cc66ec8ae5ebd6160959e70fb3edc) maintainers: add akotro
* [`8b66100d`](https://github.com/NixOS/nixpkgs/commit/8b66100d577d44f243fc9736e0126183efe77129) it-tools: init at 2024.10.22-7ca5933
* [`17cc7a6f`](https://github.com/NixOS/nixpkgs/commit/17cc7a6f16065d96d3352aea749154ee401b53e3) darwin.libutil: use bootstrap SDK
* [`877e3454`](https://github.com/NixOS/nixpkgs/commit/877e3454bb9ffa10287f068742d05159c14b4574) apple-sdk: propagate the `darwin.libutil` library
* [`ee802060`](https://github.com/NixOS/nixpkgs/commit/ee802060b85f8e7d82af36de60a21320c9ec50a9) neovim-unwrapped: drop `darwin.libutil` dependency
* [`22f2052c`](https://github.com/NixOS/nixpkgs/commit/22f2052ca1e7b7cfb4b090faa2d924c3e27e4742) python{27,39,310,311,312,313,314}: drop Darwin `libutil` patch
* [`852523aa`](https://github.com/NixOS/nixpkgs/commit/852523aa47a72a1c88f28d7779bdc898ddf9150f) nixos/keepassxc: work around OCR issues
* [`c8c430ec`](https://github.com/NixOS/nixpkgs/commit/c8c430ecf9cfbf868ddcadc5a74ed236ec82181b) keepassxc: prevent deadlock with just one core
* [`c712874d`](https://github.com/NixOS/nixpkgs/commit/c712874d4ac0f5c30731b2a7acf0905d2da629f6) nixos/keepassxc: adapt to new UI details
* [`0e251673`](https://github.com/NixOS/nixpkgs/commit/0e251673369a938d1797d40c7fe55997bedbd50d) nixos/keepassxc: stop using deprecated cli option
* [`e71a6e47`](https://github.com/NixOS/nixpkgs/commit/e71a6e47787f05f24293ea86df27a283ed325ba0) tailspin: Patch the test binary path for the integration tests.
* [`71f04a2e`](https://github.com/NixOS/nixpkgs/commit/71f04a2e549681c3690951418af046414a715b46) tailspin: Migrated to by-name.
* [`70f47b08`](https://github.com/NixOS/nixpkgs/commit/70f47b08a068ddbf48e580fe0cdd176ef36b961d) python312Packages.caldav: 1.3.9 -> 1.4.0
* [`0549d317`](https://github.com/NixOS/nixpkgs/commit/0549d3174d551513472d6ba5cc43be1ecca6c6e3) libsidplayfp: 2.10.1 -> 2.11.0
* [`a43eb36f`](https://github.com/NixOS/nixpkgs/commit/a43eb36f04e0ae7260f8f414827e6e3845a72cb0) sidplayfp: 2.10.0 -> 2.11.0
* [`a70af477`](https://github.com/NixOS/nixpkgs/commit/a70af477b19cf3874dc8ddfe80dd01cdfe21e5db) libfmvoice: 0-unstable-2024-06-06 -> 0-unstable-2024-11-03
* [`ecff2204`](https://github.com/NixOS/nixpkgs/commit/ecff2204449afc1ced32878fc673808451e61000) libfmvoice: nixfmt
* [`e90e71b3`](https://github.com/NixOS/nixpkgs/commit/e90e71b3069d4f05b3dd3221f3f2cc5090a9d45e) libfmvoice: Drop meta-wide "with lib;"
* [`833eebc0`](https://github.com/NixOS/nixpkgs/commit/833eebc021af388fd917d74bb68bb6c76c6caa96) python312Packages.bidsschematools: init at 0.11.3
* [`cd2d4944`](https://github.com/NixOS/nixpkgs/commit/cd2d4944bedfac8de96e70844c25cc3719219fb7) python312Packages.bids-validator: fix build
* [`221b2afe`](https://github.com/NixOS/nixpkgs/commit/221b2afe734658cc09f2b9fdec0cc1783990b0f0) python312Packages.pybids: fix build
* [`9440d8d6`](https://github.com/NixOS/nixpkgs/commit/9440d8d6d9a8904e48e2078fb79f8a900b108f5e) vimPlugins: update on 2024-11-05
* [`4ec9cfe0`](https://github.com/NixOS/nixpkgs/commit/4ec9cfe0b2278ce8e17d668661eb8f5da33428ac) vimPlugins.nvim-treesitter: update grammars
* [`d38d66a8`](https://github.com/NixOS/nixpkgs/commit/d38d66a8fadf2c41fc6cd42548bdc251bdf80ffa) telepathy-glib: format
* [`64719655`](https://github.com/NixOS/nixpkgs/commit/64719655bd1a04d537ce578b5139fae2816b75a3) telepathy-glib: fix gcc14 build
* [`eb84890e`](https://github.com/NixOS/nixpkgs/commit/eb84890eb10d65f39673aa811c4e35fb964627b9) sarasa-gothic: 1.0.22 -> 1.0.23
* [`a3b4f5ea`](https://github.com/NixOS/nixpkgs/commit/a3b4f5ea491e0879b8f38ccc5f20fded2e28f84d) duplicacy: move to by-name
* [`aa726fae`](https://github.com/NixOS/nixpkgs/commit/aa726faeb227caef65467f725ebd3e56f6217f8f) duplicacy: 3.2.3 -> 3.2.4
* [`fb1047cc`](https://github.com/NixOS/nixpkgs/commit/fb1047cc381b0d944f25f2c43e3a158087a09f59) aider-chat: 0.61.0 -> 0.62.0
* [`4d3b8edd`](https://github.com/NixOS/nixpkgs/commit/4d3b8eddbdb994b36d97ad6a082cf76f84c22182) dua: 2.29.2 -> 2.29.4 ([NixOS/nixpkgs⁠#353603](https://togithub.com/NixOS/nixpkgs/issues/353603))
* [`4069d470`](https://github.com/NixOS/nixpkgs/commit/4069d47036144ba67543554a1e2fc2d0fd35f37c) fractal: fix image loading by applying glycin patch ([NixOS/nixpkgs⁠#353845](https://togithub.com/NixOS/nixpkgs/issues/353845))
* [`94662991`](https://github.com/NixOS/nixpkgs/commit/94662991dbd236ab1649c10711a39e1647faf5f7) vencord: 1.10.5 -> 1.10.6
* [`ab526e04`](https://github.com/NixOS/nixpkgs/commit/ab526e04fef8d7327de04870ff5ca92ff2aa30da) nixos/ids: explain *why* uids/gids shouldn't be above "399"
* [`ce43a2ba`](https://github.com/NixOS/nixpkgs/commit/ce43a2bab8d708965785e646cc12b7bda7689328) wechat-uos: Add hidpi scale support
* [`35567b88`](https://github.com/NixOS/nixpkgs/commit/35567b883f87e6747ab8c8786c472b2b7443856a) colorpicker: mention more alternatives
* [`c8ae804d`](https://github.com/NixOS/nixpkgs/commit/c8ae804d85ccbd014595fbbeadf631bcbddadeac) python312Packages.tencentcloud-sdk-python: 3.0.1259 -> 3.0.1261
* [`00395814`](https://github.com/NixOS/nixpkgs/commit/00395814bfa6d09afabee2f9f5d5da3a79416fc6) python312Packages.holidays: 0.59 -> 0.60
* [`a2348d78`](https://github.com/NixOS/nixpkgs/commit/a2348d7835a7738d91022aeb4164a44240da629d) python312Packages.mitogen: 0.3.15 -> 0.3.16
* [`43b26ed0`](https://github.com/NixOS/nixpkgs/commit/43b26ed0d065861b90e2c83fa93208c05b325eea) python312Packages.pyatv: 0.15.1 -> 0.16.0
* [`c55530f9`](https://github.com/NixOS/nixpkgs/commit/c55530f978aaa224bc6d64f2f134f7fdbbedc42e) curl: 8.10.1 -> 8.11.0
* [`f3ce0f26`](https://github.com/NixOS/nixpkgs/commit/f3ce0f26fed1b5052dd81fe248f565bf27f79907) linuxPackages_5_x.perf: fix build with Python 3.12
* [`edf4376d`](https://github.com/NixOS/nixpkgs/commit/edf4376d679dfd521e04054592f10fa21a137355) python312Packages.pycookiecheat: 0.7.0 -> 0.8.0
* [`3f9c147f`](https://github.com/NixOS/nixpkgs/commit/3f9c147fde164ec2583c70ea784fd92ec08f2341) bootc: init at 1.1.0
* [`8aa492bb`](https://github.com/NixOS/nixpkgs/commit/8aa492bb4973d10356e4cc9cdc7f5d5a7d229e32) python312Packages.pycookiecheat: update disabled
* [`c74acf02`](https://github.com/NixOS/nixpkgs/commit/c74acf0288c9a35ecc78f223f0b80e45c8302d0b) python312Packages.pyenvisalink: 4.7 -> 4.8
* [`1baf5b78`](https://github.com/NixOS/nixpkgs/commit/1baf5b786460a1693398016812fa920b7967e6b8) bustle: 0.9.2 -> 0.10.0
* [`462716b3`](https://github.com/NixOS/nixpkgs/commit/462716b35f4b0163e806d6696cbe12a8c5313d12) bustle: add aleksana as maintainer
* [`1be419de`](https://github.com/NixOS/nixpkgs/commit/1be419deccb494ba2efa1de37d3e0ee4a2c214a7) coqPackages.mathcomp-analysis: rename altreals to experimental-reals
* [`82dc05c2`](https://github.com/NixOS/nixpkgs/commit/82dc05c26db339c935fe5bf604518e8cee36c10e) hickory-dns: nixfmt
* [`319f3c98`](https://github.com/NixOS/nixpkgs/commit/319f3c98a7f9df80f42db2c4ab1ba38d5867b7f3) hickory-dns: add passthru.updateScript
* [`36745c6b`](https://github.com/NixOS/nixpkgs/commit/36745c6b81064c29682ad83e2e4596854e75ad4c) doc: remove 'simply'
* [`8a1b1fb9`](https://github.com/NixOS/nixpkgs/commit/8a1b1fb951e03430ba7c3e9bb6919e926789a195) pythonPackages.pysatochip: fix build
* [`28623f81`](https://github.com/NixOS/nixpkgs/commit/28623f8163ac1e1ff8fa527bd7b9d1bce46b8b1c) hickory-dns: 0.24.0 -> 0.25.0-alpha.2
* [`6d34890b`](https://github.com/NixOS/nixpkgs/commit/6d34890bbd5779be8a17a7bf00f6ff38e5343b79) project-lemonlime: add missing patch for non FHS env
* [`f0bc0bd3`](https://github.com/NixOS/nixpkgs/commit/f0bc0bd3f8bc3ef6f2b4f99f76abef53b64a0778) tamatool: fix darwin builds
* [`94f930a1`](https://github.com/NixOS/nixpkgs/commit/94f930a1969bae5b9b2fee1f63763cf0cdbe61b7) tamatool: format with nixpkgs-rfc-style
* [`723e7d01`](https://github.com/NixOS/nixpkgs/commit/723e7d019f499354abd124081cfbd5b30e0ad672) efmt: init at 0.18.2
* [`c410fc65`](https://github.com/NixOS/nixpkgs/commit/c410fc65964ef9bd656e92058d815f939c5db887) hdf4: fix typo that breaks toggling netcdf support
* [`71f467fc`](https://github.com/NixOS/nixpkgs/commit/71f467fc8847db2a493c6fc6b09b2147fb15ef6c) iwd: update settings documentation
* [`95973ffa`](https://github.com/NixOS/nixpkgs/commit/95973ffac3d978a6f46cf8ec82a50c6e0bea9f18) butterfly: add license and sourceProvenance for pdfium binaries
* [`10597023`](https://github.com/NixOS/nixpkgs/commit/10597023a8a709986a08750aa75f9da6f666ac8d) slackdump: init at 2.5.11
* [`887a74fd`](https://github.com/NixOS/nixpkgs/commit/887a74fd5784727637534d9a6383e2a0719f54ec) clickhouse: fix compilation on aarch64-linux
* [`975f4c45`](https://github.com/NixOS/nixpkgs/commit/975f4c45ae5c0f41769e7ccee08c96748b334b7f) beszel: init at 0.6.2
* [`9609ea87`](https://github.com/NixOS/nixpkgs/commit/9609ea87577424d7be4813e9665fa5267c74c880) vscode-extensions.streetsidesoftware.code-spell-checker: 4.0.14 -> 4.0.15
* [`5473874d`](https://github.com/NixOS/nixpkgs/commit/5473874d08c900b27b08d2b8993fbc72e856996c) nixos/amdvlk: don't set "amdgpu" xserver driver
* [`63def528`](https://github.com/NixOS/nixpkgs/commit/63def5281884dd422797668e7de9eda0c507dccf) pinact: 0.2.1 -> 1.0.0
* [`7d73149a`](https://github.com/NixOS/nixpkgs/commit/7d73149a1d975178ca5d0cb82ca6043c6cf3101b) guestfs-tools: move to by-name
* [`09509e06`](https://github.com/NixOS/nixpkgs/commit/09509e06cdfdda60eee020874fc8069ef959dcd3) guestfs-tools: nixfmt
* [`dd02b08a`](https://github.com/NixOS/nixpkgs/commit/dd02b08a8f776f8f842ce2c7e2fa27a6c7231b09) guestfs-tools: avoid building on hydra
* [`14d82407`](https://github.com/NixOS/nixpkgs/commit/14d8240756d10e6c5f45833ad335e5b426df2612) flashrom: Remove Felix Singer from maintainers
* [`1ea6a630`](https://github.com/NixOS/nixpkgs/commit/1ea6a63088673f307b94c59c13a1827575d1e075) arrow-cpp: 17.0.0 -> 18.0.0
* [`c9ae493b`](https://github.com/NixOS/nixpkgs/commit/c9ae493b654cb16ce6fad1e842569e9ef40e1ea5) arrow-cpp: substitute --replace with --replace-fail
* [`eeff2e3d`](https://github.com/NixOS/nixpkgs/commit/eeff2e3d9b15cf525690c901e7f3de73c68b3468) ceph: patch to pick up upstream arrow 18 s3select fix
* [`8b47fb90`](https://github.com/NixOS/nixpkgs/commit/8b47fb90fe88b5379f07cf0a74d56cfd48643cc2) gdal: apply upstream patch for arrow 18
* [`3bd5960a`](https://github.com/NixOS/nixpkgs/commit/3bd5960a6cd57bbd3ea527dc8a5bc14088926f93) python3.pkgs.datafusion: add protoc
* [`6c0def83`](https://github.com/NixOS/nixpkgs/commit/6c0def8319256fe880bcf0dac2483ca78d7eaac7) python3.pkgs.ibis-framework: patch tests for arrow 18
* [`982f812a`](https://github.com/NixOS/nixpkgs/commit/982f812ae9e6d22e8e002e08e921163454d902ec) chore: style
* [`cb2ef38a`](https://github.com/NixOS/nixpkgs/commit/cb2ef38a117796ee140dd292189b30f9b1d29336) arrow-cpp: fix `pkgsStatic`
* [`29069e4f`](https://github.com/NixOS/nixpkgs/commit/29069e4fef740b657525c9dfa979fc4e8c7e15e4) arrow-cpp: disable jemalloc for arm hosts by default
* [`a6388366`](https://github.com/NixOS/nixpkgs/commit/a6388366ac19a42b72faa90304ffb6af5c1da555) python3.pkgs.databricks-sql-connector: fix build by removing patch and relaxing thrift dependency
* [`81a221b8`](https://github.com/NixOS/nixpkgs/commit/81a221b8a33545b76ed0cb275b5915a469ef8a7f) josh: 24.08.14 -> 24.10.04
* [`2d79445d`](https://github.com/NixOS/nixpkgs/commit/2d79445d164f68a558f8e349861dc1ef2f3f03aa) libsForQt5.pix: nixfmt
* [`3e78bb1b`](https://github.com/NixOS/nixpkgs/commit/3e78bb1b324d357eda840dab85de065829152ce0) Re-add test-pkgs to excluded-attrnames-at-any-depth
* [`40917814`](https://github.com/NixOS/nixpkgs/commit/40917814c49146d84ed39792185ed5702ff584ba) tsukimi: 0.16.7 -> 0.16.9
* [`3ea10f99`](https://github.com/NixOS/nixpkgs/commit/3ea10f99b7cb0c6fa7ab56f082030c7cfea97ae2) libsForQt5.pix: fix build
* [`e57af945`](https://github.com/NixOS/nixpkgs/commit/e57af9455aaa65b52e98f78fa25bb1e2cc9664fe) raycast: 1.84.12 -> 1.85.0
* [`5eea8002`](https://github.com/NixOS/nixpkgs/commit/5eea80021fc2692f1aacbbd6e842bfa7e408e58e) nexusmods-app: 0.6.2 -> 0.6.3
* [`3e646301`](https://github.com/NixOS/nixpkgs/commit/3e646301a07eb30da02f8c7775f6b3865c0ebac2) smartcat: 1.7.1 -> 2.1.0
* [`5b765c46`](https://github.com/NixOS/nixpkgs/commit/5b765c4658c2dd480776d4a942024b5eb7a82d0b) cargo-gra: init at 0.6.0
* [`161e7bff`](https://github.com/NixOS/nixpkgs/commit/161e7bff14474b01129279a42d207e752ea585fc) karlender: move to by-name
* [`dda8654c`](https://github.com/NixOS/nixpkgs/commit/dda8654cbd41249abbef64a00ed091b365969569) karlender: nixfmt
* [`4dccc2cc`](https://github.com/NixOS/nixpkgs/commit/4dccc2cc9a55ee704d3b11dcfcc1e90947dbd9ac) karlender: add passthru.updateScript
* [`7e0fc29e`](https://github.com/NixOS/nixpkgs/commit/7e0fc29eca02b60ecefe3f824d1de64f72437eef) karlender: 0.9.2 -> 0.10.4
* [`9a47d382`](https://github.com/NixOS/nixpkgs/commit/9a47d382c37a6f942175c654bd42d22cfe484105) karlender: add bot-wxt1221 as maintainers
* [`f246eac4`](https://github.com/NixOS/nixpkgs/commit/f246eac4dd49ba6e1335ea80d8a1c29ad9105d03) materia-theme-transparent: init at 0-unstable-2021-03-22
* [`e7bde375`](https://github.com/NixOS/nixpkgs/commit/e7bde375df683567a8e9831545425e06451f964e) strace: enable debug info
* [`4329e514`](https://github.com/NixOS/nixpkgs/commit/4329e514c1f465304d1d70c8bc3dea8a1fd44952) trueseeing: 2.2.2 -> 2.2.4
* [`cf507596`](https://github.com/NixOS/nixpkgs/commit/cf5075963a3f1463afda30a8fcb5b8f76b83f9e3) bloop: 2.0.3 -> 2.0.4
* [`05ac36fa`](https://github.com/NixOS/nixpkgs/commit/05ac36fa30a32157099f9828132ba20f665b6424) treewide: use dontCargo{Build,Check,Install}
* [`a5149970`](https://github.com/NixOS/nixpkgs/commit/a51499706cc67d904e51269423ae443cf8d2c275) trueseeing: with lib; cleanup
* [`8710b81a`](https://github.com/NixOS/nixpkgs/commit/8710b81a3b7e3353d71564ff5fda25f0ff693933) trueseeing: nix-rfc-fmt
* [`fb5b0a99`](https://github.com/NixOS/nixpkgs/commit/fb5b0a999faaee4d7a157bc01f93ad4387180ba7) deno: 2.0.2 -> 2.0.5
* [`ef7e5af4`](https://github.com/NixOS/nixpkgs/commit/ef7e5af4a45e36a69286663f06314179bf2949c8) cosmic-settings-daemon: use make install
* [`4becb382`](https://github.com/NixOS/nixpkgs/commit/4becb3821e08d02388045f40044c0fefa36cdec5) ocaml: build defaultentry not bootstrap on 5.2+
* [`7a9fb50f`](https://github.com/NixOS/nixpkgs/commit/7a9fb50f24bb71d85382022cbab227309c64cfc2) python3Packages.telegram: removal ([NixOS/nixpkgs⁠#353915](https://togithub.com/NixOS/nixpkgs/issues/353915))
* [`898996f4`](https://github.com/NixOS/nixpkgs/commit/898996f4f8eee822677fc18b7d8b083465435ff0) ladybird: add updateScript
* [`f4513491`](https://github.com/NixOS/nixpkgs/commit/f45134918fddeac94b00e095878e296783caa0d6) python312Packages.xsdata: 24.9 -> 24.11
* [`409f723e`](https://github.com/NixOS/nixpkgs/commit/409f723e01cafc995b9d1f9adcb821c2c8f82491) spotify: 1.2.45.454.gc16ec9f6 -> 1.2.48.405.gf2c48e6f
* [`1c07b97d`](https://github.com/NixOS/nixpkgs/commit/1c07b97d2d4302baca8c61fa2d0d4632427972a7) tuxguitar: Update homepage URL ([NixOS/nixpkgs⁠#353695](https://togithub.com/NixOS/nixpkgs/issues/353695))
* [`1f53d0a9`](https://github.com/NixOS/nixpkgs/commit/1f53d0a9f2e19745500f8b181e027ef7deca8351) xandikos: 0.12.1 -> 0.12.2 ([NixOS/nixpkgs⁠#352604](https://togithub.com/NixOS/nixpkgs/issues/352604))
* [`6ca4a965`](https://github.com/NixOS/nixpkgs/commit/6ca4a9653306ac3d70a707e00ffd5a3bc5dd8c06) stayrtr: 0.5.1 -> 0.6.1 ([NixOS/nixpkgs⁠#348291](https://togithub.com/NixOS/nixpkgs/issues/348291))
* [`06c1ed78`](https://github.com/NixOS/nixpkgs/commit/06c1ed782d9c3881ebb9b231fb929d9ce4746431) gnome-firmware: format
* [`e7e4f76a`](https://github.com/NixOS/nixpkgs/commit/e7e4f76aebab757d3088071c0aceac2df78a45bb) gnome-firmware: move to by-name
* [`f9337922`](https://github.com/NixOS/nixpkgs/commit/f9337922ac2c84ad509dd392c56f358141071c3f) gnome-firmware: switch to finalAttrs
* [`6bc77c1a`](https://github.com/NixOS/nixpkgs/commit/6bc77c1aaddef5960f946ed6faeba7ac8b71276a) gnome-firmware: 46.0 -> 47.0
* [`ff6d89ac`](https://github.com/NixOS/nixpkgs/commit/ff6d89ac694100ab5350cda97e46fdbd54a54e6c) nixos/netbox: clear old static files on upgrade
* [`fe58368d`](https://github.com/NixOS/nixpkgs/commit/fe58368de684b85915891352ef8bc3dd6e4d8ecc) nixos/netbox: switch to symlink to check for upgrades
* [`e89fc9ca`](https://github.com/NixOS/nixpkgs/commit/e89fc9caf5e7acd48e1a4663a7860a4ebc2e30c7) bitwarden-desktop: further simplify checkPhase
* [`277aa10a`](https://github.com/NixOS/nixpkgs/commit/277aa10ad5ffa2161984d0b12070299fe3c8c9a4) bambu-studio: remove openvdb override
* [`1c2c7e4b`](https://github.com/NixOS/nixpkgs/commit/1c2c7e4b76c395fdcc237faf5d2633b22766b03e) openvdb: fix incorrect license
* [`053fbe5f`](https://github.com/NixOS/nixpkgs/commit/053fbe5f03de69c2d163b390c3ea8870b6080a81) python312Packages.htseq: 2.0.4 -> 2.0.9
* [`41fbbcab`](https://github.com/NixOS/nixpkgs/commit/41fbbcabc73c82d2990992dc36baba31628a99a9) ghidra: 11.2 -> 11.2.1
* [`13bedee7`](https://github.com/NixOS/nixpkgs/commit/13bedee7fd23d8608b4e4980a246ac39f9b8fcfb) age-plugin-yubikey: 0.5.0 -> 0.5.0-unstable-2024-11-02
* [`0911c1ab`](https://github.com/NixOS/nixpkgs/commit/0911c1abd3751572e30b1a72f1d5f911df58e8f0) age-plugin-yubikey: move to by-name
* [`ceb52df3`](https://github.com/NixOS/nixpkgs/commit/ceb52df314f1fdcb818d1775f7e3301f329d5f0f) age-plugin-yubikey: add adamcstephens as maintainer
* [`a7d71f16`](https://github.com/NixOS/nixpkgs/commit/a7d71f16508a21706550b80cf6cdcc1e5fc844bf) kanidm: 1.4.0 -> 1.4.1
* [`78fbb329`](https://github.com/NixOS/nixpkgs/commit/78fbb32923453c5b5f6bdb29a05e32c0ab9a680a) bazecor: 1.5.2 -> 1.5.3
* [`218f61cf`](https://github.com/NixOS/nixpkgs/commit/218f61cfade89c42c191d703fe60956200a23728) python312Packages.dbt-common: 1.11.0 -> 1.12.0
* [`d0eaae15`](https://github.com/NixOS/nixpkgs/commit/d0eaae1588173ffafb37bd3c0a2e9637faa519c7) python312Packages.dbt-common: apply patch for protobuf 5 compatibility
* [`b0070519`](https://github.com/NixOS/nixpkgs/commit/b00705196878fb0d05c66cdae25488765f4ed124) zls: move to by-name
* [`a67ab247`](https://github.com/NixOS/nixpkgs/commit/a67ab24716a045d27b9612279612a953e52b1917) ente-cli: init at 0.2.2
* [`a7116064`](https://github.com/NixOS/nixpkgs/commit/a711606443a94644fadbb999795182645c7cc36a) ytt: 0.50.0 -> 0.51.0
* [`d4d2ec47`](https://github.com/NixOS/nixpkgs/commit/d4d2ec47f6fd0eb521f1d14a34c811e1f514de89) cartero: init at 1.2 ([NixOS/nixpkgs⁠#353980](https://togithub.com/NixOS/nixpkgs/issues/353980))
* [`c20ff9b2`](https://github.com/NixOS/nixpkgs/commit/c20ff9b2dcdd5cb44e169d5610b40af0d0db337f) Update cloudfare-warp enrollment command
* [`44fec1f6`](https://github.com/NixOS/nixpkgs/commit/44fec1f60218d1798be104a8e8b31774815d37f3) jameica: add `arch64-darwin` support
* [`d79291d7`](https://github.com/NixOS/nixpkgs/commit/d79291d787e463229d37e45168b7886326128abf) alpaca: 2.6.5 -> 2.7.0 ([NixOS/nixpkgs⁠#353808](https://togithub.com/NixOS/nixpkgs/issues/353808))
* [`fd8b3d23`](https://github.com…
@fmease fmease added A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. and removed A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. labels Dec 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-associated-items Area: Associated items (types, constants & functions) A-lifetimes Area: Lifetimes / regions A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-future-incompatibility Category: Future-incompatibility lints C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-types Relevant to the types team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

7 participants