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

pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32 #188334

Merged
merged 2 commits into from Mar 10, 2023
Merged

pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32 #188334

merged 2 commits into from Mar 10, 2023

Conversation

ghost
Copy link

@ghost ghost commented Aug 25, 2022

Description of changes

This PR provides the Hydra-generated bootstrap tarballs for mips64el-linux-gnuabin32.

With this PR we now have the bootstrap-files for all three little endian ABIs on mips: n64, n32, and o32. I do not currently plan to do big endian mips unless some motivation arises; all mips chips are bi-endian and Debian has dropped big endian support due to lack of interest.

I'll be following the script used in #151399, #168199, and #183487.

Files came from this Hydra build, which used nixpkgs revision 97d9c84 to instantiate:

/nix/store/hakn8s85s9011v61r6svp5qy8x1y64fv-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32.drv

and then built:

/nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32

I downloaded these files from Hydra and prefetched them into the nix store with the following commands:

STOREPATH=rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32
OPTIONS="--option binary-caches https://cache.nixos.org --option trusted-public-keys cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
nix store prefetch-file \
  file://$(nix store add-file --name bootstrap-tools.tar.xz  $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/bootstrap-tools.tar.xz)
nix store prefetch-file --executable \
  file://$(nix store add-path --name busybox $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/busybox)

These commands produced the following output:

Downloaded 'file:///nix/store/w6zzd2fx2vhmjfcf5h5zc01m0swldpbw-bootstrap-tools.tar.xz' to '/nix/store/6w0f0mqblrghvh6yjwcb4xdqq9x50lbl-w6zzd2fx2vhmjfcf5h5zc01m0swldpbw-bootstrap-tools.tar.xz' (hash 'sha256-LWrpN6su2yNVurUyhZP34OiZyzgh7MfN13fIIbou8KI=').
Downloaded 'file:///nix/store/nqagw1kgdz1zlmqi00qfjrmwqk3g3bgd-busybox' to '/nix/store/i361xhbdhhnvg7zd637xpm63vbl80s0s-nqagw1kgdz1zlmqi00qfjrmwqk3g3bgd-busybox' (hash 'sha256-4N3G1qYA7vitjhsIW17pR6UixIuzrq4vZXa8F0/X4iI=').

I used the hashes from the output above to create the fetchurl invocation which is part of this commit.

I then started the bootstrap with the following command:

nix build -L -f . --arg localSystem '(import ./lib).systems.examples.mips64el-linux-gnuabin32' hello

As @lovesegfault requested, here are the the sha256sums of all the on-server components for extra verification:

sha256sum /nix/store/${STOREPATH}/on-server/*

which produced the following output:

2d6ae937ab2edb2355bab5328593f7e0e899cb3821ecc7cdd777c821ba2ef0a2  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/bootstrap-tools.tar.xz
01633f71135cb9ab1b5ce3ebb67e80cbf288739729bffc1350c1552f6f8df34b  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/busybox
Things done
  • Built on platform(s)
    • mips64el-linux-gnuabin32 (nix build -L hello)
  • Tested basic functionality of all binary files (usually in ./result/bin/)
  • Fits CONTRIBUTING.md.

This PR provides the Hydra-generated bootstrap tarballs for mips64el-linux-gnuabin32.

With this PR we now have the bootstrap-file for all three little-endian ABIs on mips: n64, n32, and o32.  I do not currently plan to do big-endian mips unless some motivation arises; all mips chips are bi-endian and Debian has dropped big-endian support due to lack of interest.

I'll be following the script used in #151399, #168199, and #183487.

Files came from [this](https://hydra.nixos.org/build/188389586#tabs-summary) Hydra build, which used nixpkgs revision 97d9c84 to instantiate:

```
/nix/store/hakn8s85s9011v61r6svp5qy8x1y64fv-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32.drv
```

and then built:

```
/nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32
```

I downloaded these files from Hydra and prefetched them into the nix store with the following commands:

```
STOREPATH=rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32
OPTIONS="--option binary-caches https://cache.nixos.org --option trusted-public-keys cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
nix store prefetch-file \
  file://$(nix store add-file --name bootstrap-tools.tar.xz  $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/bootstrap-tools.tar.xz)
nix store prefetch-file --executable \
  file://$(nix store add-path --name busybox $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/busybox)
```

These commands produced the following output:

```
Downloaded 'file:///nix/store/w6zzd2fx2vhmjfcf5h5zc01m0swldpbw-bootstrap-tools.tar.xz' to '/nix/store/6w0f0mqblrghvh6yjwcb4xdqq9x50lbl-w6zzd2fx2vhmjfcf5h5zc01m0swldpbw-bootstrap-tools.tar.xz' (hash 'sha256-LWrpN6su2yNVurUyhZP34OiZyzgh7MfN13fIIbou8KI=').
Downloaded 'file:///nix/store/nqagw1kgdz1zlmqi00qfjrmwqk3g3bgd-busybox' to '/nix/store/i361xhbdhhnvg7zd637xpm63vbl80s0s-nqagw1kgdz1zlmqi00qfjrmwqk3g3bgd-busybox' (hash 'sha256-4N3G1qYA7vitjhsIW17pR6UixIuzrq4vZXa8F0/X4iI=').
```

I used the hashes from the output above to create the `fetchurl` invocation which is part of this commit.

I then started the bootstrap with the following command:

```
nix build -L -f . --arg localSystem '(import ./lib).systems.examples.mips64el-linux-gnuabin32' hello
```

As @lovesegfault requested, here are the the `sha256sum`s of all the `on-server` components for extra verification:

```
sha256sum /nix/store/${STOREPATH}/on-server/*
```

which produced the following output:

```
2d6ae937ab2edb2355bab5328593f7e0e899cb3821ecc7cdd777c821ba2ef0a2  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/bootstrap-tools.tar.xz
01633f71135cb9ab1b5ce3ebb67e80cbf288739729bffc1350c1552f6f8df34b  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/busybox
```
@github-actions github-actions bot added the 6.topic: stdenv Standard environment label Aug 25, 2022
@ghost ghost marked this pull request as ready for review August 26, 2022 22:06
@ghost ghost marked this pull request as draft August 27, 2022 01:01
@ghost ghost marked this pull request as ready for review October 3, 2022 07:51
@ghost
Copy link
Author

ghost commented Nov 5, 2022

@lovesegfault, would you mind uploading these when you get a chance?

@ghost
Copy link
Author

ghost commented Jan 4, 2023

Ping @lovesegfault

@lovesegfault
Copy link
Member

I finally recovered my identities to upload this!

One question, you have this going in:

nixpkgs-tarballs/stdenv-linux/mips64el/97d9c84e1df4397b43ecb39359f1bd003cd44585

But shouldn't it go in mips64el-n32?

@ghost
Copy link
Author

ghost commented Feb 25, 2023

But shouldn't it go in mips64el-n32?

Good point!

Would it be possible to put it in /n32 like this?

nixpkgs-tarballs/stdenv-linux/mips64el/n32/97d9c84e1df4397b43ecb39359f1bd003cd44585

that way nobody will think that n32 is an operating system and mips64el-n32 is a nix-double (like aarch64-linux).

If we aren't supposed to have subdirectories below the /${cpu}/ level I'll change the PR to use /mips64el-n32/.

@lovesegfault
Copy link
Member

So, looking at the tarballs we currently have there are none with another level of subdir like that, so I'm going to upload this into mips64el-n32.

I agree with you that it's confusing, but IMO the entire naming scheme for these is bad, and we should probably just be using the target triple.

@lovesegfault
Copy link
Member

Alright, they should be there!

❯ aws s3 ls --recursive s3://nixpkgs-tarballs/stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585
2023-02-26 13:08:36   16338804 stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585/bootstrap-tools.tar.xz
2023-02-26 13:08:36     246080 stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585/busybox

Hashes are correct:

❯ aws s3 cp --recursive s3://nixpkgs-tarballs/stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585 ./
download: s3://nixpkgs-tarballs/stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585/busybox to ./busybox
download: s3://nixpkgs-tarballs/stdenv-linux/mips64el-n32/97d9c84e1df4397b43ecb39359f1bd003cd44585/bootstrap-tools.tar.xz to ./bootstrap-tools.tar.xz

❯ sha256sum /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/*
2d6ae937ab2edb2355bab5328593f7e0e899cb3821ecc7cdd777c821ba2ef0a2  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/bootstrap-tools.tar.xz
01633f71135cb9ab1b5ce3ebb67e80cbf288739729bffc1350c1552f6f8df34b  /nix/store/rjgybpnf3yiqyhvl2n2lx31jf800fii2-stdenv-bootstrap-tools-mips64el-unknown-linux-gnuabin32/on-server/busybox

❯ sha256sum bootstrap-tools.tar.xz busybox 
2d6ae937ab2edb2355bab5328593f7e0e899cb3821ecc7cdd777c821ba2ef0a2  bootstrap-tools.tar.xz
01633f71135cb9ab1b5ce3ebb67e80cbf288739729bffc1350c1552f6f8df34b  busybox

Update the PR with the correct URL and this should be good to go :)

@lovesegfault
Copy link
Member

@amjoseph-nixpkgs ping :)

@ghost ghost marked this pull request as draft March 7, 2023 10:18
@ghost
Copy link
Author

ghost commented Mar 7, 2023

Reverifying the build to be sure...

@ghost
Copy link
Author

ghost commented Mar 7, 2023

ofborg-eval-nixos-manual

   error: reading from file: Connection reset by peer

@ofborg eval

@ghost ghost marked this pull request as ready for review March 9, 2023 20:54
@ghost
Copy link
Author

ghost commented Mar 9, 2023

This is ready to merge.

@lovesegfault lovesegfault merged commit e9cf2d1 into NixOS:master Mar 10, 2023
@ghost ghost deleted the pr/bootstrapFiles/mips64n32 branch March 10, 2023 05:36
knl added a commit to knl/dotskel that referenced this pull request Mar 13, 2023
## Changelog for nixpkgs:
Branch: master
Commits: [nixos/nixpkgs@d154f809...4b1a1efe](https://github.com/nixos/nixpkgs/compare/d154f809e9c3c47fee72186aa3ff6479403435d4...4b1a1efe99a7a8206544c0caae77eee43bb8db57)

* [`037167ae`](https://github.com/NixOS/nixpkgs/commit/037167ae17fefe6b5dc86dc05f0dd168031c3c68) xf86videointel: Use the `crocus` and `iris` DRI drivers
* [`51ba2337`](https://github.com/NixOS/nixpkgs/commit/51ba23371779e1018fc89573f94ca414c09c4e61) pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32
* [`efbeb1bb`](https://github.com/NixOS/nixpkgs/commit/efbeb1bb5e90ab3ca2d5184e446cea4fa97c29cb) prometheus-cpp: 1.0.1 -> 1.1.0
* [`57b09f29`](https://github.com/NixOS/nixpkgs/commit/57b09f29c6345f0ca701b79760dfd23443c3a982) vscode-extensions.jellyedwards.gitsweep: init at 0.0.15
* [`00ae655e`](https://github.com/NixOS/nixpkgs/commit/00ae655e639e620ee5dcfd6f1bd9ccb4e337eea1) btrbk: Use sudo or doas based on configuration
* [`3144b00d`](https://github.com/NixOS/nixpkgs/commit/3144b00d2486ca5d85098a688a76a5e945de411d) btrbk: add doas variant of module test
* [`9a848178`](https://github.com/NixOS/nixpkgs/commit/9a8481780b31e101dc941a3d619ce4803dc5d525) libsForQt515.solid: patch binary search paths
* [`a7ea3911`](https://github.com/NixOS/nixpkgs/commit/a7ea3911798120047beb25be107138a0c547dce2) swww: init at 0.5.0
* [`61840f71`](https://github.com/NixOS/nixpkgs/commit/61840f7181bc17f3c808fcae5acc656a2408ab7b) nixos/prometheus: Add new relabel_configs actions
* [`f88873d8`](https://github.com/NixOS/nixpkgs/commit/f88873d877d17617ed11a8f6aba49db9ae57cdbb) runelite: 2.1.5 -> 2.5.0
* [`2f8266e0`](https://github.com/NixOS/nixpkgs/commit/2f8266e02234a6a2e2ce2b939366e63b5369c278) sonic-pi: add updateScript
* [`5988ada8`](https://github.com/NixOS/nixpkgs/commit/5988ada8358cb66b5486889db22aba37caaf4f4c) sonic-pi: add ruby to nativeBuildInputs
* [`e7383a32`](https://github.com/NixOS/nixpkgs/commit/e7383a32e365371b9d62c30f16089687db7cb5d4) gitlab-pages: Maintain together with the rest of GitLab + add to...
* [`baf1f129`](https://github.com/NixOS/nixpkgs/commit/baf1f1293b289ce53d9b660465cd68e1a3e00b96) ruby: Fix withPackages on darwin with makeBinaryWrapper
* [`9fdd9729`](https://github.com/NixOS/nixpkgs/commit/9fdd97298b6b8b0a8385ada8b81d9d1d56ed7c34) nixos/java: add binfmt option
* [`dbd563b9`](https://github.com/NixOS/nixpkgs/commit/dbd563b9b8c20071075bcdd5912b99486b3fcfa3) nixos/gitlab: Improve support for GitLab Pages
* [`2d4f4e9b`](https://github.com/NixOS/nixpkgs/commit/2d4f4e9bdfdcc69ea19299150db5c26c7aa4e44a) nixos/gitlab: Handle secrets in GitLab Pages config
* [`44e5b418`](https://github.com/NixOS/nixpkgs/commit/44e5b41871ed5afdaa927e4bbf7c00362ebf54cb) lib/systems/parse: stop considering armv8a able to execute armv7l
* [`678eed32`](https://github.com/NixOS/nixpkgs/commit/678eed323ffd90117472cd432ebe85dddaff07f1) nixos/grub: Name initrd-secrets by system, not by initrd
* [`012434d4`](https://github.com/NixOS/nixpkgs/commit/012434d4815a7a3221c2f8b9568cb6285e810059) feedbackd: 0.0.1 -> 0.0.3
* [`6f63865c`](https://github.com/NixOS/nixpkgs/commit/6f63865cf470ce99b36bceacbefbb6886d05be51) dockerTools: Add minimal test case for [nixos/nixpkgs⁠#214434](https://github.com/nixos/nixpkgs/issues/214434)
* [`f4e4cac0`](https://github.com/NixOS/nixpkgs/commit/f4e4cac0c86f0e16aac773083aebbfc0e7daea43) dockerTools: Correctly unpack duplicate rootfs diffs
* [`9377f94a`](https://github.com/NixOS/nixpkgs/commit/9377f94ac5c69eaeca0a2a9d13a41ea7f41c0b7d) swww: v0.5.0 -> v0.7.0
* [`a124a517`](https://github.com/NixOS/nixpkgs/commit/a124a517b2e66078143beaae058e394aa5c1acc0) Update pkgs/tools/wayland/swww/default.nix
* [`2a5bf1fc`](https://github.com/NixOS/nixpkgs/commit/2a5bf1fcdfc8658678bc9305677dfa0fda907367) Update pkgs/tools/wayland/swww/default.nix
* [`2bf1fca5`](https://github.com/NixOS/nixpkgs/commit/2bf1fca5ac68b085bbc42f445731791cf5aa3b1b) Update pkgs/tools/wayland/swww/default.nix
* [`68f5e955`](https://github.com/NixOS/nixpkgs/commit/68f5e9554ffa3cfee31786f9a3013ebd8a7d8308) Add maintainers
* [`7c201f6b`](https://github.com/NixOS/nixpkgs/commit/7c201f6b53bf4acc77184d110cd2cfd72d065bae) Add whitespaces for readability.
* [`0566d27d`](https://github.com/NixOS/nixpkgs/commit/0566d27d03a7b9c285045f57004a6ba2c2613454) coder: fix web frontend building
* [`56ecab70`](https://github.com/NixOS/nixpkgs/commit/56ecab709a5a6e49049c0892a7cc59cfa22bdd98) nixos/coder: init module
* [`eb38ad04`](https://github.com/NixOS/nixpkgs/commit/eb38ad04efae0ebcd7217c4ccace3da0102d85af) dockerTools: ensure runAsRoot script not optimized away in test
* [`c66cabe3`](https://github.com/NixOS/nixpkgs/commit/c66cabe33ea1f969ef9562feeef0a015b83a60b1) dockerTools: use more familiar terminology to describe test image
* [`298c543e`](https://github.com/NixOS/nixpkgs/commit/298c543e55284a3be8e8785302883fb873e005af) dockerTools: Specify 'latest' tag for repeated layer test image
* [`84e04ccf`](https://github.com/NixOS/nixpkgs/commit/84e04ccf8570e9f8072486f7d750d326225c7117) dockerTools: Preprocess layers list before unpack to handle repeated layers
* [`c7fbd40f`](https://github.com/NixOS/nixpkgs/commit/c7fbd40fd152506057d84e3e656dd564164168d2) groff: Add enableIconv and enableLibuchardet option
* [`235d9e21`](https://github.com/NixOS/nixpkgs/commit/235d9e218736a7d930992e7297bef1182d69fd60) lib/licenses.nix: Add cc-by-nc-nd-30
* [`4efb17b5`](https://github.com/NixOS/nixpkgs/commit/4efb17b50b96b9058d646ecec8d632d69d3c9633) dendrite: 0.11.0 -> 0.11.1
* [`f0ddf281`](https://github.com/NixOS/nixpkgs/commit/f0ddf281c593b82a2bd11110e8147ba85a1de70c) sane-backends: 1.1.1 -> 1.2.1
* [`c845a281`](https://github.com/NixOS/nixpkgs/commit/c845a2815fac9fc3ad40a2095aa3d3d129616af1) cargo-pgx: add buildPgxExtension
* [`4e189d76`](https://github.com/NixOS/nixpkgs/commit/4e189d769bdfb7a220da5cd98413d63d5768489a) timescaledb-toolkit: init at 1.14.0
* [`9dc7a05a`](https://github.com/NixOS/nixpkgs/commit/9dc7a05a85a0b051d208f41ddca0f6cdb6e6ff06) cargo-pgx/timescaledb_toolkit: add nixos test
* [`5287f144`](https://github.com/NixOS/nixpkgs/commit/5287f1446fbb227f75f75c2ac5df59c9cd7ca4e6) Apply suggestions from code review
* [`3c486263`](https://github.com/NixOS/nixpkgs/commit/3c4862636fd6a29f69a7b43f82a3cf070a9c650d) linuxPackages.ipu6-drivers: init at 2023-01-17
* [`134e4a64`](https://github.com/NixOS/nixpkgs/commit/134e4a6473a032513c2bea03035342aacaf3f53d) ipu6-camera-bin: init at 2022-11-12
* [`4269391e`](https://github.com/NixOS/nixpkgs/commit/4269391e56b015472b8f238c1ae52442e168348f) ipu6-camera-hal: init at 2023-01-09
* [`c4c9f600`](https://github.com/NixOS/nixpkgs/commit/c4c9f600e7a09bb0044fc10ea3ae62a3c65b76b5) gst_all_1.icamerasrc: init at 202212109
* [`9b4f6d4d`](https://github.com/NixOS/nixpkgs/commit/9b4f6d4d9278632b1e6c28e83ed9764bd0387c43) linuxPackages.ivsc-driver: init at 2023-01-06
* [`6b338572`](https://github.com/NixOS/nixpkgs/commit/6b3385723874fc580a854701292a9a0c7ede4482) ivsc-firmware: init at 2022-11-02
* [`b38d6054`](https://github.com/NixOS/nixpkgs/commit/b38d6054d789ec8f12a11ed7c2107ce770be7a98) linuxPackages.ipu6-drivers: Reuse ivsc-driver source
* [`7d0299ea`](https://github.com/NixOS/nixpkgs/commit/7d0299eaf38e8e145fd6429d5f224bc9e64399d6) dotnet-sdk_6: 6.0.405 -> 6.0.406
* [`9b54e8ab`](https://github.com/NixOS/nixpkgs/commit/9b54e8abdef0ae7389c6fefa7ff2d27461950169) python3Packages.debugpy: lldb support
* [`bacfd9df`](https://github.com/NixOS/nixpkgs/commit/bacfd9df0915c8bb5c4b40234d9cd980196f2398) bitwig-studio: 4.4.6 -> 4.4.8
* [`ee89f8e1`](https://github.com/NixOS/nixpkgs/commit/ee89f8e1e558c2021a7bea8a7dd50b9521afb772) navidrome: 0.49.1 -> 0.49.3
* [`7a67b4c2`](https://github.com/NixOS/nixpkgs/commit/7a67b4c28ba8a303dc0ec20bddeaa077df6da165) fftwQuad: Fix build on Darwin by forcing gcc
* [`51417891`](https://github.com/NixOS/nixpkgs/commit/514178918f7f97a066911c0ce3fc2d41f550a934) 0.7.0 -> 0.7.2
* [`b3b79fc4`](https://github.com/NixOS/nixpkgs/commit/b3b79fc41eba5f31467bd5aa568ee52a5202ca7a) linuxPackages.systemtap: 4.5 -> 4.8
* [`0061f844`](https://github.com/NixOS/nixpkgs/commit/0061f844c9bbc993606eecd79243a07fb358443e) onlyoffice-documentserver: 7.3.0 -> 7.3.2
* [`72840a9f`](https://github.com/NixOS/nixpkgs/commit/72840a9f2f118c91f1421b8e8773fda576ea9114) peek: switch to ffmpeg-full
* [`fef1cfb0`](https://github.com/NixOS/nixpkgs/commit/fef1cfb05a1fa5596591058fe56fbb120b83d550) python3Packages.grpcio: Fix build parallelism
* [`f83f0f8d`](https://github.com/NixOS/nixpkgs/commit/f83f0f8dfaf0f7ec853597fa236340bc1873d315) python3Packages.mixins: init at 0.1.4
* [`e78dc938`](https://github.com/NixOS/nixpkgs/commit/e78dc938d81cc175f4af9da0d94771c39aa43cd5) nixos/qemu-vm: fix minor typo
* [`9f57a615`](https://github.com/NixOS/nixpkgs/commit/9f57a615e4f912c83d3f66d8e051c1b18b6ba2d3) nifi: 1.16.3 -> 1.20.0
* [`4d547243`](https://github.com/NixOS/nixpkgs/commit/4d547243a283353e7cb1c39fe76efa66f18ecf3c) signal-desktop: 6.5.1 -> 6.7.0, signal-desktop-beta: 6.6.0-beta.1 -> 6.8.0-beta.1
* [`2c7af955`](https://github.com/NixOS/nixpkgs/commit/2c7af95567179d59340bf54800642b851133dd3c) pre-commit: 2.20.0 -> 3.1.0
* [`4e9350b6`](https://github.com/NixOS/nixpkgs/commit/4e9350b673f59f47ad0eeffe5d4981a6e67e455b) BeatSaberModManager: 0.0.4 -> 0.0.5
* [`1e2257a4`](https://github.com/NixOS/nixpkgs/commit/1e2257a4584ee372ab772741e5546bed6244d591) maintainers: update lunik1's gpg key
* [`91294961`](https://github.com/NixOS/nixpkgs/commit/912949612371d0d6a26640992f13dfbec3c06711) libheif: 1.14.2 -> 1.15.1
* [`eddb6a1b`](https://github.com/NixOS/nixpkgs/commit/eddb6a1b6241303c0310993294662e9347a2435d) hunspell: fix spanish-language dictionaries
* [`b4ff692b`](https://github.com/NixOS/nixpkgs/commit/b4ff692b80a031fb0c9715208a4aca4398430fd9) orchis-theme: 2022-10-19 -> 2023-02-26
* [`ab0eeaaa`](https://github.com/NixOS/nixpkgs/commit/ab0eeaaa3687263741fcd5307587bd4be1902e48) github-runner: add update script
* [`b87b0dba`](https://github.com/NixOS/nixpkgs/commit/b87b0dba523ce77b07ed0a2967c12d6ded3a1d5b) github-runner: add `sourceProvenance` and `changelog` to `meta`
* [`2f813ae1`](https://github.com/NixOS/nixpkgs/commit/2f813ae18b27bd926595be2b9e9e7f7e696af193) github-runner: use `buildDotnetModule`
* [`b22b1f48`](https://github.com/NixOS/nixpkgs/commit/b22b1f4874a1614307b4efa8d5309301832685e4) github-runner: patch access to `.env` and `.path`
* [`137db830`](https://github.com/NixOS/nixpkgs/commit/137db83090cf371369a48111b3bd1c888288f19e) nixos/github-runners: use `Runner.Listener` directly for registration
* [`e8df83d4`](https://github.com/NixOS/nixpkgs/commit/e8df83d417a65f84914ee27da98b870c0e7d143c) nixos/tests/github-runner: init
* [`5a65a419`](https://github.com/NixOS/nixpkgs/commit/5a65a419627fa1746fac2d8b1a7219a47908e781) libre: use cmake for configurePhase
* [`67f93ae2`](https://github.com/NixOS/nixpkgs/commit/67f93ae299730480bd4a7bfd77a1b10322b682c6) librem: use cmake for configurePhase
* [`9a584068`](https://github.com/NixOS/nixpkgs/commit/9a584068b438be375dc258adbe010bdbdf70eab1) wakatime: 1.61.0 -> 1.68.1
* [`c4fc77a0`](https://github.com/NixOS/nixpkgs/commit/c4fc77a0c987f48f4927bbbbd295ed3ecafd94c0) python3Packages.qtile-extras: init at 0.22.1
* [`4c8b75ed`](https://github.com/NixOS/nixpkgs/commit/4c8b75ed9a4a2583b1b8f58745852d0f4fa49fcc) dotnetPackages.Nuget: 5.6.0.6489->6.3.1.1
* [`476b6f8d`](https://github.com/NixOS/nixpkgs/commit/476b6f8d6c69084280fa691fdd7b12109fe0534d) python310Packages.deid: init at 0.3.21
* [`067d00f7`](https://github.com/NixOS/nixpkgs/commit/067d00f76581ee21787c376e0d3b01bc9ccdf31b) bubblewrap: 0.7.0 -> 0.8.0
* [`476bb883`](https://github.com/NixOS/nixpkgs/commit/476bb8830866751e07edf015c78e00c0c951978f) nixos/atop: Don't choke if no existing atop logs
* [`f0a6216e`](https://github.com/NixOS/nixpkgs/commit/f0a6216eebb3a6693b111e2927e10f520f6c479a) mpv: enable swift support
* [`5b8e896d`](https://github.com/NixOS/nixpkgs/commit/5b8e896dbadd36fecc96dc77216517599c260ca7) mpv: Switch to apple_sdk_11_0 for darwin
* [`8a28ae85`](https://github.com/NixOS/nixpkgs/commit/8a28ae851dee5306de51352300fceb692bd9c389) mpv: Only enable swift support on aarch64-darwin
* [`0acc6df7`](https://github.com/NixOS/nixpkgs/commit/0acc6df7423fc042f29a0df8a3c39249b2e901e9) refactor: Add spacing around tests
* [`73981dd9`](https://github.com/NixOS/nixpkgs/commit/73981dd9c24d3b7529c12ea83c4d59c1377a2b99) feat: Create desktop item for `appimage-run`
* [`ef5dc1f9`](https://github.com/NixOS/nixpkgs/commit/ef5dc1f99490f24a6b367222fa590d8d91bca4c7) jid: Use buildGoModule
* [`4e0525a8`](https://github.com/NixOS/nixpkgs/commit/4e0525a8cdb370d31c1e1ba2641ad2a91fded57d) configuration.nix: suggest a command line program
* [`bee04d31`](https://github.com/NixOS/nixpkgs/commit/bee04d31577f4878e2d3824e354d1bf3bf300309) prisma-engines: 4.10.1 -> 4.11.0
* [`d5d8baa6`](https://github.com/NixOS/nixpkgs/commit/d5d8baa676aac635110fd9668738ef441c65d98a) nodePackages.prisma: 4.10.1 -> 4.11.0
* [`014eba88`](https://github.com/NixOS/nixpkgs/commit/014eba883e7d81771c9c8cb938618e5a3f35208d) buildDotnetModule: point fetch-deps at module's deps file by default
* [`929143c1`](https://github.com/NixOS/nixpkgs/commit/929143c14558140944c3beb392fbb084d8f9bd93) opensearch: 2.5.0 -> 2.6.0
* [`5cfd70fd`](https://github.com/NixOS/nixpkgs/commit/5cfd70fd4d6afabb89434c7a2ff0d116b030bbf9) opensearch: fix knn ml plugin
* [`3330e67e`](https://github.com/NixOS/nixpkgs/commit/3330e67e9718579df2d8e5ed933ec1e54651a3a9) python310Packages.dtlssocket: 0.1.12 -> 0.1.14
* [`39bb5f56`](https://github.com/NixOS/nixpkgs/commit/39bb5f56a10cdb4b222751c64e9ed583ae7e467b) zola: 0.16.1 -> 0.17.0
* [`2eb86f59`](https://github.com/NixOS/nixpkgs/commit/2eb86f590dd5590ce59e2be1456360e39d073a7b) zola: fix completions
* [`40575604`](https://github.com/NixOS/nixpkgs/commit/40575604eaaa1de4b90330bcd4c5dbf71a3d84dd) zola: 0.17.0 -> 0.17.1
* [`fe6b447c`](https://github.com/NixOS/nixpkgs/commit/fe6b447c430b23f508af608aff740e0c644297d7) ocamlPackages.elina: fixup build by using older make
* [`03bd6304`](https://github.com/NixOS/nixpkgs/commit/03bd63043fe664316f479fc0a548e903432fbb0f) deepin.dtkgui: don't propagate librsvg and freeimage
* [`118bdf25`](https://github.com/NixOS/nixpkgs/commit/118bdf25a6c572dd2fd29d10b1ae2e4d9a95b907) lib/modules: Allow an "anonymous" module with key in disabledModules
* [`00e61446`](https://github.com/NixOS/nixpkgs/commit/00e614468d4828bafeb2942b9a9055d9a1bbb0fd) evcc: 0.113.0 -> 0.114.0
* [`735b57d9`](https://github.com/NixOS/nixpkgs/commit/735b57d962bf61f5457f48e8d8e16da56ff1d88a) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`ea0e64eb`](https://github.com/NixOS/nixpkgs/commit/ea0e64eb3fdf0f0ad477393060b7cc6f171ce86f) libvirt: 9.0.0 -> 9.1.0
* [`e7071b16`](https://github.com/NixOS/nixpkgs/commit/e7071b166934180cb2d9808568859b8595983423) stellar-core: 19.7.0 -> 19.8.0
* [`fae39600`](https://github.com/NixOS/nixpkgs/commit/fae39600ef84afac3c8570656198e7f9e0a3c30f) fossil: 2.20 -> 2.21
* [`d23e7b1b`](https://github.com/NixOS/nixpkgs/commit/d23e7b1be4e9c3a3135ca07045fb809278b5bf9d) ocamlPackages.elina: more precise meta.platforms
* [`688c4961`](https://github.com/NixOS/nixpkgs/commit/688c4961cf969df7a1ecc05dfd4f1932fda192dc) gnuplot: 5.4.5 -> 5.4.6
* [`ca44f048`](https://github.com/NixOS/nixpkgs/commit/ca44f0485c6135d1a1be5f9a3ac7ab1b18c24752) python310Packages.questionary: increase open files for testing
* [`c3c40d56`](https://github.com/NixOS/nixpkgs/commit/c3c40d562c254c260b959f513424db6fba3cb7e9) uhd: 4.1.0.5 -> 4.4.0.0
* [`22ee3640`](https://github.com/NixOS/nixpkgs/commit/22ee36406c6aebb2a4df228a932e48944e9eca72) volk: 2.5.0 -> 3.0.0
* [`35157ceb`](https://github.com/NixOS/nixpkgs/commit/35157ceba3d60f3338cdc6b4f0846444e037282d) pritunl-client: 1.3.3430.77 -> 1.3.3457.61
* [`5917a053`](https://github.com/NixOS/nixpkgs/commit/5917a053a75affb24979b3962411e704d15bf9c3) regreet: init at unstable-2023-02-27
* [`1a129dc6`](https://github.com/NixOS/nixpkgs/commit/1a129dc63f21026d029d43c5ff8cf5d77ef3238a) zfsUnstable: 2.1.10-unstable-2023-01-24 → 2.1.10-unstable-2023-03-02
* [`1bf8d63f`](https://github.com/NixOS/nixpkgs/commit/1bf8d63f8fe9b48225ed58a561b991bc4ba00398) openai-full: create variant that includes optional deps
* [`1023ebd4`](https://github.com/NixOS/nixpkgs/commit/1023ebd4a0c06d5dc3eaeb92f98412b444eb94f5) obsidian: 1.1.15 -> 1.1.16
* [`a48211c3`](https://github.com/NixOS/nixpkgs/commit/a48211c319dc9520dbabfd20bd2001f991fd898e) microsoft-edge: fix file picker and `subsituteInPlace`
* [`2c126112`](https://github.com/NixOS/nixpkgs/commit/2c1261127770f1886e49903742e4e989fdae6ad2) phoc: 0.21.1 -> 0.25.0
* [`2455dfab`](https://github.com/NixOS/nixpkgs/commit/2455dfab0da8bb2158d9c404ec13ccf42250ed3e) phosh: 0.23.0 -> 0.25.1
* [`a10d6761`](https://github.com/NixOS/nixpkgs/commit/a10d67619900daa500e010a3c68c1e7799c32eb8) llvm: tighten platforms
* [`7705b76c`](https://github.com/NixOS/nixpkgs/commit/7705b76cc1936920bccdedc0405b8a7dab641c08) xpra: 4.3.3 -> 4.4.3
* [`b7b7c43d`](https://github.com/NixOS/nixpkgs/commit/b7b7c43d5a9575201173cdf38659e4afc23cdaac) gnomeExtensions: auto-update
* [`94bbbb04`](https://github.com/NixOS/nixpkgs/commit/94bbbb047180b59ef6f25f4d89e7a12b5fc6db63) cudaPackages: point nvcc at a compatible -ccbin
* [`cf7fb1d0`](https://github.com/NixOS/nixpkgs/commit/cf7fb1d08f928f48725f15e595cbb84793278379) python3Packages.tensorflow: add cudaCapabilities argument
* [`79397957`](https://github.com/NixOS/nixpkgs/commit/79397957e876ef7fe6eccbcb58d23fb5c58f121c) cudaPackages.nccl: respect cudaCapabilities
* [`e3050112`](https://github.com/NixOS/nixpkgs/commit/e305011223c940a8dd661f64eb5cd5384c15ddbe) cudaPackages_12.nccl: fix new missing inputs
* [`d378cc6f`](https://github.com/NixOS/nixpkgs/commit/d378cc6fb23d67f3d9f86c39051f810c563789ca) opencv4: respect config.cudaCapabilities
* [`5f4bdbe6`](https://github.com/NixOS/nixpkgs/commit/5f4bdbe6c387bf740025581d94bbfba9a887c76f) python3Packages.tensorflow: fix `GLIBCXX_3.4.30' not found
* [`17248123`](https://github.com/NixOS/nixpkgs/commit/17248123b6ae01b89a25de730ea890276acd69b2) cudaPackages_12: use gcc12
* [`2b69d618`](https://github.com/NixOS/nixpkgs/commit/2b69d618c28bdcbc822843a534c2cb74542ec972) opencv3: respect config.cudaCapabilities
* [`c376c54f`](https://github.com/NixOS/nixpkgs/commit/c376c54f70b91c68f6f2ddc90838b57a82b12ecd) cudaPackages.cudatoolkit: refactor inheriting passthru.cc
* [`8bf5f5ac`](https://github.com/NixOS/nixpkgs/commit/8bf5f5ac893ff07406a3a1979d944c2a86cfc887) magma: use CMAKE_CUDA_ARCHITECTURES directly
* [`2100c492`](https://github.com/NixOS/nixpkgs/commit/2100c4926200b1ebbee032ad22113597195932f2) endless-sky:0.9.14 -> 0.9.16.1
* [`0ff1b6ed`](https://github.com/NixOS/nixpkgs/commit/0ff1b6ed70d13907a8d3d552fd90ac77d1b96bea) esptool: 4.5 -> 4.5.1
* [`fa8ecdce`](https://github.com/NixOS/nixpkgs/commit/fa8ecdced8888122a4ec14c8e652d350b2c97fd1) monocraft: 1.4 -> 2.4
* [`dd2b2769`](https://github.com/NixOS/nixpkgs/commit/dd2b27692e8a32316d263b938bddfa515eb2775a) magma: explain `cudaSupport ? true`
* [`0c25f5aa`](https://github.com/NixOS/nixpkgs/commit/0c25f5aa7ffb4ed9d4015fc273f51d08ff2a279b) cudaPackages.cudatoolkit: remove unused gcc argument
* [`ac64f07f`](https://github.com/NixOS/nixpkgs/commit/ac64f07f9c8b9bcc4a4b6d285146cd50473d6b5d) cudaPackages.cudaFlags: drop unused capabilitiesAndForward
* [`68648fa4`](https://github.com/NixOS/nixpkgs/commit/68648fa4c01e5b9f9b91cf0235652bbaec154926) darwin.apple_sdk_11_0.clang{12-15}Stdenv: init
* [`7a734f27`](https://github.com/NixOS/nixpkgs/commit/7a734f279523d08b5eec75a8a60d24438dbbe5cc) darwin.apple_sdk_11_0: code cleanup
* [`b7391c69`](https://github.com/NixOS/nixpkgs/commit/b7391c695b8c29e046445cc1953c7380ae36eb66) signalbackup-tools: unbreak on Darwin systems
* [`b373d299`](https://github.com/NixOS/nixpkgs/commit/b373d299bae89922f2bde5f351b90495b182daf2) docs/rust: improve docs for nightly usage
* [`fcc10ee9`](https://github.com/NixOS/nixpkgs/commit/fcc10ee9a4891ea20194fa8178d55786439fd73a) cargo-binutils: don't recommend nixpkgs-mozilla
* [`35081a77`](https://github.com/NixOS/nixpkgs/commit/35081a77d56c84bea79bc810a825179357d68658) cargo-llvm-cov: don't recommend nixpkgs-mozilla
* [`4f2d703d`](https://github.com/NixOS/nixpkgs/commit/4f2d703d91e958e79bd38254e5c8e09edcd5d583) ssm-session-manager-plugin: Build from source
* [`9c00800a`](https://github.com/NixOS/nixpkgs/commit/9c00800a68f2961e464240902407bcb27f53fa72) ssm-session-manager-plugin: 1.2.331.0 -> 1.2.398.0
* [`2c02d0ba`](https://github.com/NixOS/nixpkgs/commit/2c02d0ba11687d5ecca95ac33b1e9227f920ac3c) mongosh: 1.6.2 -> 1.8.0, use buildNpmPackage
* [`2a2831c9`](https://github.com/NixOS/nixpkgs/commit/2a2831c9e9f3b7f2d62373a3700a2c9c0862ea3d) ko: add developer-guy to maintainers list
* [`c777db77`](https://github.com/NixOS/nixpkgs/commit/c777db77a3e0aab5f406142fadc7ad43838b8d73) element-{web,desktop}: 1.11.23 -> 1.11.24
* [`6428223c`](https://github.com/NixOS/nixpkgs/commit/6428223c0ec203dc80716f100f89985bc4caafb2) cgreen: take maintenance
* [`abedfdd3`](https://github.com/NixOS/nixpkgs/commit/abedfdd3da6c1a301f23556f06936490e69c070a) maintainers: remove nichtsfrei
* [`fa06318a`](https://github.com/NixOS/nixpkgs/commit/fa06318a46c6110eb5395ffcb0270fca38da09f1) ndn-cxx: unpin openssl_1_1
* [`7e13b629`](https://github.com/NixOS/nixpkgs/commit/7e13b629c733ed7510c8d5fe3c77dce1316c1460) ndn-tools: unpin openssl_1_1
* [`a75ef43a`](https://github.com/NixOS/nixpkgs/commit/a75ef43adfb56aeefa78bfe29a4acb5154446efd) wireshark: format
* [`f1911fd8`](https://github.com/NixOS/nixpkgs/commit/f1911fd866d2ed05051c3b5cc20b459491f56d29) tutanota-desktop: 3.108.12 -> 3.110.0
* [`dede4a1d`](https://github.com/NixOS/nixpkgs/commit/dede4a1dadd5613f0f438180ef5a14c2a3e41887) pe-bear: 0.6.1 -> 0.6.5
* [`1616a0aa`](https://github.com/NixOS/nixpkgs/commit/1616a0aa4d4ffe8aa77fa90f9148960954b9c1f5) bazarr: 1.1.4 -> 1.2.0
* [`ddac6e04`](https://github.com/NixOS/nixpkgs/commit/ddac6e045f121a12541d9faf3842a5868b204358) wireshark: 4.0.3 -> 4.0.4
* [`55a25b0a`](https://github.com/NixOS/nixpkgs/commit/55a25b0acaa26956ac3e335711a603008ca6ab1a) wireshark: add more dependencies
* [`48eab73b`](https://github.com/NixOS/nixpkgs/commit/48eab73bb6145dc3e78325fc1bda679ba5c8645a) python310Packages.eradicate: update meta
* [`57e21e88`](https://github.com/NixOS/nixpkgs/commit/57e21e88b204c55eac1569807dd974741beffb5f) python310Packages.eradicate: disable on unsupported Python releases
* [`e1806091`](https://github.com/NixOS/nixpkgs/commit/e1806091d7374613c403414ae0debb58e6a7c814) python310Packages.eradicate: 2.1.0 -> 2.2.0
* [`353859c8`](https://github.com/NixOS/nixpkgs/commit/353859c8fb494a5c99ba61266605181347f0eb0a) python310Packages.bpycv: 0.2.43 -> 0.3.6
* [`71435991`](https://github.com/NixOS/nixpkgs/commit/71435991394209dc843eb6f99414ea8a75be491c) wpsoffice: 11.1.0.11664 -> 11.1.0.11691
* [`5248f534`](https://github.com/NixOS/nixpkgs/commit/5248f53462ad2004fa6d2128521844cc41d0b83e) vassal: 3.6.12 -> 3.6.13
* [`a3f3ede0`](https://github.com/NixOS/nixpkgs/commit/a3f3ede0cfd0a31d65637296cac21b7e28506e5d) ocamlPackages.ocaml-freestanding: mark as broken
* [`50e35e9b`](https://github.com/NixOS/nixpkgs/commit/50e35e9b6c8fbd2e84bf569bfb3c7dd9ab6a6329) obliv-c: migrate to OCaml 4.14
* [`cc4169d7`](https://github.com/NixOS/nixpkgs/commit/cc4169d737e092ef877cf8b8d9b940df849a7312) glsurf: migrate to OCaml 4.14
* [`3796e591`](https://github.com/NixOS/nixpkgs/commit/3796e5913698883eb2ef6d6cc6c797fd302a4bc4) vampire: unbreak on aarch64-linux
* [`f88ef28d`](https://github.com/NixOS/nixpkgs/commit/f88ef28dc9e8c732b9338571cd5b1bbd084ff268) maintainers: add apfelkuchen6
* [`d73f7fc6`](https://github.com/NixOS/nixpkgs/commit/d73f7fc6156c804dd325a5d2327a20bcfebb8caf) python3Packagages.python-musicpd: init at 0.8.0
* [`28eb4d04`](https://github.com/NixOS/nixpkgs/commit/28eb4d0456ac8aff043c499ec49a598f3f71206b) mpd-sima: init at 0.18.2
* [`919dd089`](https://github.com/NixOS/nixpkgs/commit/919dd0892c74a6cbca47000182909766d8380385) signalbackup-tools: 20230223-1 -> 20230304-3
* [`953d54f6`](https://github.com/NixOS/nixpkgs/commit/953d54f69117f4c79269e11f69ebafee5507d972) rust-analyzer: use nix-update-script
* [`4140f453`](https://github.com/NixOS/nixpkgs/commit/4140f453e932ccc92bef8fea370d6f88b6d09973) praat: 6.3.08 -> 6.3.09
* [`e10f9f1f`](https://github.com/NixOS/nixpkgs/commit/e10f9f1fbfb20acbf9b1643c7ec39e6d28bc2174) polkadot: 0.9.38 -> 0.9.39
* [`d008d899`](https://github.com/NixOS/nixpkgs/commit/d008d899ce44f8ce6f20442db157c96b5e31b096) shotman: 0.4.0 -> 0.4.1
* [`58306ceb`](https://github.com/NixOS/nixpkgs/commit/58306ceb17c8daea391a6bb888fc68b75fff0718) morgen: 2.6.6 -> 2.6.7
* [`72024b15`](https://github.com/NixOS/nixpkgs/commit/72024b159a71b057534ad2472f0c99f85407d4b5) tvm: 0.10.0 -> 0.11.0
* [`5424180b`](https://github.com/NixOS/nixpkgs/commit/5424180bc5d13d2b3707e572f5d410d67a02d582) nats-server: 2.9.14 -> 2.9.15
* [`46cdbdaa`](https://github.com/NixOS/nixpkgs/commit/46cdbdaa318325b42bbfb05e4a6db3d10b195864) linkerd_edge: 23.2.3 -> 23.3.1
* [`6ba0151a`](https://github.com/NixOS/nixpkgs/commit/6ba0151a846af3938196f830f7c128678a7ff89c) terragrunt: 0.44.0 -> 0.44.4
* [`a56529a9`](https://github.com/NixOS/nixpkgs/commit/a56529a95f30709bb7cc4d956d1a08961cf588d1) glsurf: fix runtime error
* [`7aa0bc3c`](https://github.com/NixOS/nixpkgs/commit/7aa0bc3c377d753c0964542eccd997aabaaf78a3) feedbackd: 0.0.3 -> 0.1.0
* [`3e45de22`](https://github.com/NixOS/nixpkgs/commit/3e45de22cda188da91528d8294047e73d0f8776f) acorn: 0.5.1 -> 0.6.0
* [`af81d879`](https://github.com/NixOS/nixpkgs/commit/af81d8794ec7f897accae7e07460b70b52cbd11e) unison: M4c -> M4h
* [`0f1483d1`](https://github.com/NixOS/nixpkgs/commit/0f1483d1a261a1f7f9a3ac109a16cdff68312db4) python310Packages.lineedit: init at 0.1.6
* [`b92e5657`](https://github.com/NixOS/nixpkgs/commit/b92e565723097a3425a0e2c7b47f30041085f940) python310Packages.s3fs: 2023.1.0 -> 2023.3.0
* [`d6a97b41`](https://github.com/NixOS/nixpkgs/commit/d6a97b41824b41af29ad19a11dea9b34270d7586) python310Packages.apispec: 6.0.2 -> 6.1.0
* [`f1e518e0`](https://github.com/NixOS/nixpkgs/commit/f1e518e06f4ac43238d376787c278d088758c986) bolt: 0.9.2 -> 0.9.5
* [`ca9f0682`](https://github.com/NixOS/nixpkgs/commit/ca9f0682fdbaf70454be9c1dd51250a0065233bd) nixos/systemd-boot: always use profile_path() for system closure paths
* [`73f2d007`](https://github.com/NixOS/nixpkgs/commit/73f2d0074aa039a40fd11ffcce6495568528c56e) python310Packages.rchitect: init at 0.3.40
* [`e730867d`](https://github.com/NixOS/nixpkgs/commit/e730867dc051f9f9f6bd0b641838a24b74cad4c8) python310Packages.radian: init at 0.6.4 and provide radianWrapper
* [`b2acf6bc`](https://github.com/NixOS/nixpkgs/commit/b2acf6bcd1d6b1615b40b3c8c01538d332eaf36a) thermald: 2.5.1 -> 2.5.2
* [`eadfa088`](https://github.com/NixOS/nixpkgs/commit/eadfa0886a1ab1e18aad53ba0103456abe7b0f3c) python310Packages.aiodiscover: 1.4.13 -> 1.4.14
* [`0e09eee2`](https://github.com/NixOS/nixpkgs/commit/0e09eee2c066791be7f17f53d1fc01457e4953ea) hikari: 2.3.2 -> 2.3.3
* [`da590309`](https://github.com/NixOS/nixpkgs/commit/da59030939a95114cf38cd589da4a7f5f7ca8b74) python310Packages.aiodiscover: add changelog to meta
* [`32907346`](https://github.com/NixOS/nixpkgs/commit/3290734615c91f490550d8336e4cf14d897b2027) pkgsStatic.iproute2: fix build (disable shared libraries)
* [`44172b3c`](https://github.com/NixOS/nixpkgs/commit/44172b3c66ded6942aea293c09d5437117956f3b) udict: init at 0.1.2
* [`8caf109c`](https://github.com/NixOS/nixpkgs/commit/8caf109c28ba10ab9ea71bd57a18c06451c9a8f3) carapace: 0.21.0 -> 0.22.0
* [`78c57b6c`](https://github.com/NixOS/nixpkgs/commit/78c57b6c1cd31b0a0a8e1e527893e150e26bb48b) neil: 0.1.47 -> 0.1.55
* [`38ba8261`](https://github.com/NixOS/nixpkgs/commit/38ba8261dd85015f007c7534a6a6074df11b1484) simdjson: 3.1.2 -> 3.1.3
* [`04082197`](https://github.com/NixOS/nixpkgs/commit/040821978dc5c2f26ce5c322b37b1ec363f0720d) squid: 5.7 -> 5.8
* [`9a23d3c8`](https://github.com/NixOS/nixpkgs/commit/9a23d3c8cd0387379380b3f082e46f7e4bf71ea4) pcloud: 1.10.1 -> 1.11.0
* [`c299df8d`](https://github.com/NixOS/nixpkgs/commit/c299df8dec7cff18d1d696047339d4ebb286aea6) openseachest: 22.07 -> 23.03
* [`3c4b76f4`](https://github.com/NixOS/nixpkgs/commit/3c4b76f46e2a7301b516df31d6024782eba9ba07) katawa-shoujo: init at 1.3.1
* [`877d7078`](https://github.com/NixOS/nixpkgs/commit/877d70784585dee16fa6a758b5d719aaf607fc0f) oven-media-engine: 0.15.0 -> 0.15.1
* [`35388553`](https://github.com/NixOS/nixpkgs/commit/353885536c7c82e119e486e3bcc7ff6fecaca2a4) drawterm: unstable-2021-10-02 -> unstable-2023-03-05
* [`a18b27a3`](https://github.com/NixOS/nixpkgs/commit/a18b27a3f62c72da3c5a1ba6b75c6a188e9b0376) libdeltachat: 1.110.0 -> 1.111.0
* [`783dd8d4`](https://github.com/NixOS/nixpkgs/commit/783dd8d4fe4702b6d1cc0e5d539337eab29237d3) awscli2: 2.10.4 -> 2.11.0
* [`1360d4cc`](https://github.com/NixOS/nixpkgs/commit/1360d4cc5133bf700044e6d343169d289143a183) zig: build offline documentation
* [`786bf693`](https://github.com/NixOS/nixpkgs/commit/786bf693bae56d7ee705e809c4ab2d4244cdca36) argocd: 2.6.2 -> 2.6.3
* [`5050b9c4`](https://github.com/NixOS/nixpkgs/commit/5050b9c48fd2fc920963c607831dba2047bd81fd) holochain-launcher: 0.9.0 -> 0.9.1
* [`3d173e96`](https://github.com/NixOS/nixpkgs/commit/3d173e9635eb413cf1cf4744b02de6551e342718) xborders: init at 3.4
* [`0f2d8460`](https://github.com/NixOS/nixpkgs/commit/0f2d84601c1f93fa311940fdde6adb8854e244e1) komga: 0.161.0 -> 0.162.0
* [`c0a41e92`](https://github.com/NixOS/nixpkgs/commit/c0a41e924b33d6e05b807f2f7816814d91b028d8) blaze: 3.8.1 -> 3.8.2
* [`8e3984de`](https://github.com/NixOS/nixpkgs/commit/8e3984de4c7334e0d6077e834b7e0212c7e9d585) avalanchego: 1.9.9 -> 1.9.10
* [`2b814394`](https://github.com/NixOS/nixpkgs/commit/2b814394c8846365598348f00c5b93cfa911b5ad) rpi-imager: 1.7.3 -> 1.7.4
* [`2bd6fc16`](https://github.com/NixOS/nixpkgs/commit/2bd6fc164cf473bd1d3b03a725169c8369fc217b) ntfy-sh: 2.1.1 -> 2.1.2
* [`1ae55a93`](https://github.com/NixOS/nixpkgs/commit/1ae55a93f8a23610fb1b729458567198eb03b49f) coreth: 0.11.7 -> 0.11.8
* [`1e45fc39`](https://github.com/NixOS/nixpkgs/commit/1e45fc393bf819cf2f211c9ea237283246465d97) chromiumDev: 112.0.5596.2 -> 112.0.5615.12
* [`33c3687d`](https://github.com/NixOS/nixpkgs/commit/33c3687d221b4be03e9a891636d8c25401c3317b) vscodium: 1.75.0.23033 -> 1.76.0.23062
* [`1c696382`](https://github.com/NixOS/nixpkgs/commit/1c696382ae5e3eb31f689c55ffd15ff1087f1315) autorestic: 1.7.5 -> 1.7.6
* [`fbaaa34c`](https://github.com/NixOS/nixpkgs/commit/fbaaa34c7a1b3f4d7923a987ab3946326e225227) fetchmail: 6.4.36 -> 6.4.37
* [`fddd8787`](https://github.com/NixOS/nixpkgs/commit/fddd8787d374141fbbb45ed68debba11483450b7) openfortivpn: 1.19.0 -> 1.20.1
* [`43750863`](https://github.com/NixOS/nixpkgs/commit/437508639df090459b1a9f1871ab7966913687b7) cemu: 2.0-26 -> 2.0-28
* [`50f8a89d`](https://github.com/NixOS/nixpkgs/commit/50f8a89d699d9e3e2ec2fa8491436b396f0c834e) exfat: 1.3.0 -> 1.4.0
* [`5dda1cbe`](https://github.com/NixOS/nixpkgs/commit/5dda1cbe9549cdf25c4ac70df5d7b230a613fbc3) grapejuice: 7.2.1 -> 7.8.3
* [`cda984b5`](https://github.com/NixOS/nixpkgs/commit/cda984b5ec21de133374025cffe9cbf548d839bd) kics: 1.6.10 -> 1.6.11
* [`6f10ea96`](https://github.com/NixOS/nixpkgs/commit/6f10ea96ec9149ef88cf0bd689efbca6e812c314) deltachat-desktop: remove old patch
* [`5e5d6e16`](https://github.com/NixOS/nixpkgs/commit/5e5d6e16ed90c73684b8426c7ca2567c7f1538fd) python310Packages.deltachat: inherit meta from libdeltachat
* [`823e822a`](https://github.com/NixOS/nixpkgs/commit/823e822aeec15abad61d2b56ee2bf8130a9e34d4) mdbook: 0.4.26 -> 0.4.28
* [`1fc18708`](https://github.com/NixOS/nixpkgs/commit/1fc187089b742fb79f07d88ede3b9939281ce3ba) ares-rs: init at 0.9.0
* [`1a79103b`](https://github.com/NixOS/nixpkgs/commit/1a79103b2b4fc48e07347f188ec2d68023c635ac) rauc: 1.8 -> 1.9
* [`a7cfc9af`](https://github.com/NixOS/nixpkgs/commit/a7cfc9afdf51ebcb571f463847c0ac8cae2cd0e2) python310Packages.ospd: add changelog to meta
* [`23dec20d`](https://github.com/NixOS/nixpkgs/commit/23dec20de6262748af0492e26cdbe86a8dcf7840) ospd-openvas: init at 22.4.6
* [`521fb3f6`](https://github.com/NixOS/nixpkgs/commit/521fb3f6a67fb10722fe5e6abe036c54f2eb6137) gvm-libs: add changelog to meta
* [`a97d17a4`](https://github.com/NixOS/nixpkgs/commit/a97d17a444c2fb22839418c564d7502a9ba6de91) gvm-libs: 21.4.4 -> 22.4.4
* [`ede665f2`](https://github.com/NixOS/nixpkgs/commit/ede665f2ef01f54831624a413030f7b6cb0ba661) miopengemm: 5.4.2 -> 5.4.3
* [`d4b88e4d`](https://github.com/NixOS/nixpkgs/commit/d4b88e4d15100cbd70bfaabe0a8b9f97e694d25c) python310Packages.kaggle: 1.5.12 -> 1.5.13
* [`b9c88ad0`](https://github.com/NixOS/nixpkgs/commit/b9c88ad0a09144667147b19c29f4187052820690) python310Packages.google-cloud-error-reporting: 1.8.2 -> 1.9.0
* [`626cc1f3`](https://github.com/NixOS/nixpkgs/commit/626cc1f3e645d8b3815d27c4bef8210c651aa680) firefox-beta-bin-unwrapped: 111.0b6 -> 111.0b8
* [`1d79811a`](https://github.com/NixOS/nixpkgs/commit/1d79811a4211ad6f1b9f9f2b4279145ec531f92c) wine: fix build failure on Darwin
* [`be7a05a7`](https://github.com/NixOS/nixpkgs/commit/be7a05a70f46bdbb072c25535fb576198b409651) brev-cli: 0.6.207 -> 0.6.208
* [`8fdababc`](https://github.com/NixOS/nixpkgs/commit/8fdababce4969d18f9d86664fa5dc292dd16a883) android-udev-rules: 20230104 -> 20230303
* [`c9babe3f`](https://github.com/NixOS/nixpkgs/commit/c9babe3fc1a435e2f36e3b8f0af89ff489757f7f) xd: 0.4.2 -> 0.4.4
* [`f8ae1e7f`](https://github.com/NixOS/nixpkgs/commit/f8ae1e7fe9934d335ee7886f1f8e583213c47fbe) lxgw-neoxihei: 1.006 -> 1.007
* [`9780b8e2`](https://github.com/NixOS/nixpkgs/commit/9780b8e2673dfd01279e4147f410887b93f3e032) ginkgo: fix darwin build
* [`d6d742cf`](https://github.com/NixOS/nixpkgs/commit/d6d742cf89e417cef066a30284a1e94ac44aeb9d) rnote: 0.5.14 -> 0.5.16
* [`5765d33f`](https://github.com/NixOS/nixpkgs/commit/5765d33f3540e12d7864dc3a155b8332a8dc0ec4) binutils: fix MinGW link failures with import libs
* [`8c7e78ad`](https://github.com/NixOS/nixpkgs/commit/8c7e78ad9d29610e57c394d06aa4e8dda1914ea0) jfrog-cli: 2.34.2 -> 2.34.6
* [`22cea184`](https://github.com/NixOS/nixpkgs/commit/22cea1844af6a6b88d97c8997c67fb6bf6be619e) litecoin: 0.21.2.1 -> 0.21.2.2
* [`782f4c77`](https://github.com/NixOS/nixpkgs/commit/782f4c779a1aec781fe2747f809964f9b6c0895f) cloud-hypervisor: 29.0 -> 30.0
* [`684306b2`](https://github.com/NixOS/nixpkgs/commit/684306b246d05168e42425a3610df7e2c4d51fcd) ocamlPackages.sedlex: 3.0 -> 3.1
* [`cb1e91e6`](https://github.com/NixOS/nixpkgs/commit/cb1e91e66189bf780930058a668a95097f3d2daf) python310Packages.iminuit: 2.20.0 -> 2.21.0
* [`1d503d2c`](https://github.com/NixOS/nixpkgs/commit/1d503d2c17eb26ddee3d915047388600ece49ae6) mkgmap: 4905 -> 4906
* [`915bc5fb`](https://github.com/NixOS/nixpkgs/commit/915bc5fb1de4f6e1798586d0f7f9e470f2647aee) podman-tui: 0.7.0 -> 0.9.0
* [`c52aa746`](https://github.com/NixOS/nixpkgs/commit/c52aa746e12733647ea47d9d2a1dd35fa02d8670) vscode-extensions.streetsidesoftware.code-spell-checker: 2.18.0 -> 2.19.0
* [`cd20e3b8`](https://github.com/NixOS/nixpkgs/commit/cd20e3b85e7fd8c5a3f303634022d7f794ac292b) colima: patch `sw_vers` on darwin
* [`c5d748d6`](https://github.com/NixOS/nixpkgs/commit/c5d748d650139e4b86248ab80c0e490d13561191) bgpq4: 1.8 -> 1.9
* [`6ea505ee`](https://github.com/NixOS/nixpkgs/commit/6ea505ee4ea6a148132f7b4fd93f8d36aa1b25b0) mesa: enable vulkan intel drivers on 32bit
* [`d23c04cd`](https://github.com/NixOS/nixpkgs/commit/d23c04cdbd5460ae548803bb10fd04b9da4037a0) colima: build and test all packages
* [`cb363523`](https://github.com/NixOS/nixpkgs/commit/cb363523dad54f575dae55d245d73018712a6f7f) gitlab: 15.8.3 -> 15.8.4 ([nixos/nixpkgs⁠#219406](https://github.com/nixos/nixpkgs/issues/219406))
* [`68553d6e`](https://github.com/NixOS/nixpkgs/commit/68553d6e23935cb1b2ec4192208e3c8bb2b95fc3) duckdb: 0.7.0 -> 0.7.1
* [`e6c8a2f3`](https://github.com/NixOS/nixpkgs/commit/e6c8a2f3e340cbf7dbecfd5c66baf716b212a139) linuxPackages_latest.jool: fix build ([nixos/nixpkgs⁠#219138](https://github.com/nixos/nixpkgs/issues/219138))
* [`358ca90b`](https://github.com/NixOS/nixpkgs/commit/358ca90b5f2e1e9a7263e8b4690d131d214c504b) luaPackages: adding several neovim plugins
* [`332073ba`](https://github.com/NixOS/nixpkgs/commit/332073ba4277f8643362ccfc6f20b0050549a4b9) colima: add darwin tools to native build inputs
* [`bf864baa`](https://github.com/NixOS/nixpkgs/commit/bf864baaa28514dbd4714fcfeb5714e7f3af4343) python310Packages.django-ipware: 4.0.2 -> 5.0.0
* [`b5f0fdc3`](https://github.com/NixOS/nixpkgs/commit/b5f0fdc371c33207144bf0b4b8de26c3fb613076) workflows/backport: Copy security label in backport PRs
* [`4caf0ce0`](https://github.com/NixOS/nixpkgs/commit/4caf0ce0e266f5a6ca9be701e307d2872d45dcfd) n8n: 0.215.1 -> 0.218.0
* [`31959695`](https://github.com/NixOS/nixpkgs/commit/3195969509c0569a6371a345738454e7c9191540) vimPlugins: update
* [`66fa5d30`](https://github.com/NixOS/nixpkgs/commit/66fa5d3036f1fafa9d58c379f34e881a8250e91b) vimPlugins.nvim-treesitter: update grammars
* [`7e4e8b9e`](https://github.com/NixOS/nixpkgs/commit/7e4e8b9e3cd28ab7b29c16a747ff16da47f2d52a) gitRepo: 2.31 -> 2.32
* [`15ada3ac`](https://github.com/NixOS/nixpkgs/commit/15ada3ac044e169d601929e493077dee17b8f65b) pantheon.elementary-files: 6.2.2 -> 6.3.0
* [`11d60255`](https://github.com/NixOS/nixpkgs/commit/11d602559bbf8eb3101957c04800eaa0aacfa974) python310Packages.tplink-omada-client: 1.1.0 -> 1.1.1
* [`14632246`](https://github.com/NixOS/nixpkgs/commit/146322465ff2996ad5143f13e10d6cd5ab23c52a) python310Packages.tplink-omada-client: add changelog to meta
* [`663f1739`](https://github.com/NixOS/nixpkgs/commit/663f17398c1820feaa192a523907ba294fe21319) python310Packages.screenlogicpy: 0.7.2 -> 0.8.0
* [`c15f803d`](https://github.com/NixOS/nixpkgs/commit/c15f803d8e729a0963d207f61826fb75ec1c8d02) python310Packages.scikit-survival: 0.19.0.post1 -> 0.20.0
* [`9e6c5da7`](https://github.com/NixOS/nixpkgs/commit/9e6c5da715c721429f308d1ae7de8665b53c86dc) python310Packages.caio: 0.9.11 -> 0.9.12
* [`62821edd`](https://github.com/NixOS/nixpkgs/commit/62821edd2e685be68ece5dd50af4b493a4fa9dba) This PR sets default SPARK_HOME and JAVA_HOME for R's sparklyr package using a patch in .onload. Preset value take precedence. SPARK_HOME points to python3Packages.pyspark rather than pkgs.spark because the former is actively maintained.
* [`ad920652`](https://github.com/NixOS/nixpkgs/commit/ad9206529272709d983822f7661bcc8b2ab343c8) element-{web,desktop}: hack to make ofborg maintainer pings work again
* [`41020c32`](https://github.com/NixOS/nixpkgs/commit/41020c3241acbdd15e0c3e9ad947826abc8638b6) bind: avoid tests on aarch64-linux for now
* [`b6cc2f29`](https://github.com/NixOS/nixpkgs/commit/b6cc2f2979a19ec2983cef156d5d44b2fe0e545f) element-desktop: electron_22 -> electron_23 ([nixos/nixpkgs⁠#219823](https://github.com/nixos/nixpkgs/issues/219823))
* [`2d1959e4`](https://github.com/NixOS/nixpkgs/commit/2d1959e4451ba8920d4cf2c38cbdd002fc51eb37) libqalculate, qalculate-gtk: 4.5.1 -> 4.6.0
* [`ba0b8cd1`](https://github.com/NixOS/nixpkgs/commit/ba0b8cd1051da6499a3fb4adffc25b5dda1f7149) python310Packages.exchangelib: 4.7.6 -> 4.9.0
* [`f8560b60`](https://github.com/NixOS/nixpkgs/commit/f8560b606d8bccadce7643de99bbbff3dba2fbae) python310Packages.google-cloud-iot: 2.8.1 -> 2.9.0
* [`45b97fbf`](https://github.com/NixOS/nixpkgs/commit/45b97fbf3c90dbc017c6a181bcbc8764f141084a) python310Packages.exchangelib: add changelog to meta
* [`97a25540`](https://github.com/NixOS/nixpkgs/commit/97a2554073bc9aca7faf0bdf39c2f392f55d1ca0) ponyc: fix build
* [`4056bd51`](https://github.com/NixOS/nixpkgs/commit/4056bd515fcf848a63c3e009c078f51f06b1cd07) mnemosyne: fix build on darwin
* [`fce04513`](https://github.com/NixOS/nixpkgs/commit/fce04513bdbd1befff2fb9d79606472ebc6818d5) python310Packages.yattag: 1.15.0 -> 1.15.1
* [`c37be28c`](https://github.com/NixOS/nixpkgs/commit/c37be28c5ce35a9ce27f282aad7b3ee5b00dd7af) python310Packages.yattag: update meta
* [`a22c1ad4`](https://github.com/NixOS/nixpkgs/commit/a22c1ad4658695d83a0c2511e86dc4703abf24e7) python310Packages.yattag: disable on unsupported Python releases
* [`2cb1fddb`](https://github.com/NixOS/nixpkgs/commit/2cb1fddb1741b6c9a7e194bc1c628cb930ba454f) python310Packages.yattag: add pythonImportsCheck
* [`37cb8972`](https://github.com/NixOS/nixpkgs/commit/37cb89729485c70a324076b465f10a019733d629) ddnet: 16.7.2 -> 16.8
* [`0385eec0`](https://github.com/NixOS/nixpkgs/commit/0385eec0567ba6b52c45fe4d7d66736ad84b44a9) rust-analyzer-unwrapped: 2023-02-27 -> 2023-03-06
* [`740395e1`](https://github.com/NixOS/nixpkgs/commit/740395e1d38f2b6201acc69c3de95a1805158425) cachix: 1.2 -> 1.3
* [`4b23fea8`](https://github.com/NixOS/nixpkgs/commit/4b23fea83c5fa2941d8fa8a59cfd04afa040db3d) pokefinder: Add `qtwayland` for Linux
* [`fcc9c904`](https://github.com/NixOS/nixpkgs/commit/fcc9c904caab87f83779eca73a21e226ab54f06f) xorg.xorgserver: fixup build on *-darwin
* [`8cbb9b0c`](https://github.com/NixOS/nixpkgs/commit/8cbb9b0caa0f682c4aa437f87ed5fac935f8b4fe) python310Packages.vertica-python: 1.3.0 -> 1.3.1
* [`a6ad4d51`](https://github.com/NixOS/nixpkgs/commit/a6ad4d5146fdb18c504102e45c842a667eb40d41) python310Packages.django-ipware: add changelog to meta
* [`2d91c09a`](https://github.com/NixOS/nixpkgs/commit/2d91c09a03dcde05ab350e8e7849f55dd3bc97a6) python310Packages.django-ipware: disable on unsupported Python releases
* [`1bf51415`](https://github.com/NixOS/nixpkgs/commit/1bf51415baa7bcbeca221a702441694e9a5b2b7b) ocamlPackages.camlimages_4_2_4: remove broken
* [`d934806f`](https://github.com/NixOS/nixpkgs/commit/d934806f6201e1749f98d47611dbf90d5fcdc0e7) omake: 0.10.5 → 0.10.6
* [`8ba93b07`](https://github.com/NixOS/nixpkgs/commit/8ba93b07f9cc5533070c9df076b727ee2178d071) python310Packages.aliyun-python-sdk-iot: 8.51.0 -> 8.52.0
* [`b5ee3bef`](https://github.com/NixOS/nixpkgs/commit/b5ee3bef18cd0f14268d04f7092f7c3b59538fad) spicy-parser-generator: 1.5.3 -> 1.7.0
* [`186e71a9`](https://github.com/NixOS/nixpkgs/commit/186e71a9aba60e6f0b5dc4193231ce6bc5c407a2) zeek: 5.1.2 -> 5.2.0
* [`eabc31b9`](https://github.com/NixOS/nixpkgs/commit/eabc31b9b927a8053434af87d25d69a665bc3ba4) hcl2json: 0.3.4 -> 0.5.0
* [`9687cb67`](https://github.com/NixOS/nixpkgs/commit/9687cb670bb87129e3ed4e3dcc90955b06bc1861) fselect: 0.8.1 -> 0.8.2
* [`5f60ed18`](https://github.com/NixOS/nixpkgs/commit/5f60ed186f842d4818de7a6615ad64dbc1c56294) kubelogin-oidc: 1.26.0 -> 1.27.0
* [`9e88cf2c`](https://github.com/NixOS/nixpkgs/commit/9e88cf2c9eec4a91ab6114cbf446930f65ed9e36) xorg.xf86videosuncg6: 1.1.2 -> 1.1.3
* [`46f6c447`](https://github.com/NixOS/nixpkgs/commit/46f6c447aa6ce45a68dd89864377a1a8d5d0362e) xorg.xf86videosunffb: 1.2.2 -> 1.2.3
* [`be4adf56`](https://github.com/NixOS/nixpkgs/commit/be4adf566821cc44298eb6c9eec0be51ec4f277d) xorg.xf86videosunleo: 1.2.2 -> 1.2.3
* [`7a550f8b`](https://github.com/NixOS/nixpkgs/commit/7a550f8b8d26a7036dd0e1d4215c95de4e8f01dd) xorg.xf86videotrident: 1.3.8 -> 1.4.0
* [`cfc997d8`](https://github.com/NixOS/nixpkgs/commit/cfc997d86de27d2df7c10a0130a956a5946ec639) xorg.xf86videoqxl: 0.1.5 -> 0.1.6
* [`24489274`](https://github.com/NixOS/nixpkgs/commit/2448927413e25f0f000d2f8ac4468436c6ee75aa) python310Packages.aioconsole: 0.6.0 -> 0.6.1
* [`3af39763`](https://github.com/NixOS/nixpkgs/commit/3af397636d07d949148e610c278060c7c0c8fb96) evcc: 0.114.0 -> 0.114.1
* [`a479ff1e`](https://github.com/NixOS/nixpkgs/commit/a479ff1ec5427acc7d4cb5cfd0dde8204ae14e21) sapling: 0.2.20230124-180750-hf8cd450a -> 0.2.20230228-144002-h9440b05e
* [`1eb6f7ea`](https://github.com/NixOS/nixpkgs/commit/1eb6f7eaabb3ea59195f151c6aee6acdee6ed804) trealla: only put valgrind in checkInputs if not darwin
* [`014968da`](https://github.com/NixOS/nixpkgs/commit/014968da10a43bf9c4547cfc7ee63be5c7476398) Update pkgs/development/interpreters/trealla/default.nix
* [`1511944c`](https://github.com/NixOS/nixpkgs/commit/1511944c6f4e5b2b86c751c8b8072beb8d69ac5b) treesheets: unstable-2023-02-25 -> unstable-2023-03-05
* [`a4384ecf`](https://github.com/NixOS/nixpkgs/commit/a4384ecfb23b72e8e37103df64aee9bcae0d53ef) llpp: 33 -> 41
* [`a6462d10`](https://github.com/NixOS/nixpkgs/commit/a6462d104a8d7004df933c892c9cf2d42c48ee97) iosevka-bin: 19.0.1 -> 20.0.0
* [`9ba06d5e`](https://github.com/NixOS/nixpkgs/commit/9ba06d5e2ff3eda353e2968cf2635873d8d6ed39) duden: init at 0.18.0
* [`14622349`](https://github.com/NixOS/nixpkgs/commit/14622349154c73938ac2b385be92518235e92a0d) hue-plus: init at 1.4.5
* [`67b2ca1b`](https://github.com/NixOS/nixpkgs/commit/67b2ca1b16f1c0d377cc3f71cf9022973cd5b13f) doppler: 3.55.0 -> 3.56.0
* [`6e060c01`](https://github.com/NixOS/nixpkgs/commit/6e060c01b8a5e85ccfc5dadaef9ffe5a1332f1ab) matrix-appservice-slack: 2.0.2 -> 2.1.0
* [`8119ccf4`](https://github.com/NixOS/nixpkgs/commit/8119ccf40044c1a8fc6a885e3f99c7bcf35ff021) conform: 0.1.0-alpha.26 -> 0.1.0-alpha.27
* [`9b985ffb`](https://github.com/NixOS/nixpkgs/commit/9b985ffb118dc36281b728570c1bc77ca4bd9ef4) weidu: patch against OCaml 4.14
* [`d61ab745`](https://github.com/NixOS/nixpkgs/commit/d61ab7452c9652b0b6051f1a2a9f7da38d67dceb) mldonkey: migrate to OCaml 4.14
* [`883997cb`](https://github.com/NixOS/nixpkgs/commit/883997cb3af6825772ab4d4d38e78109c241c53d) erdtree: 1.1.0 -> 1.2.0
* [`f255a7eb`](https://github.com/NixOS/nixpkgs/commit/f255a7ebc3924deb487a08ba881921859ac456fa) grpc-gateway: 2.15.1 -> 2.15.2
* [`a119b197`](https://github.com/NixOS/nixpkgs/commit/a119b197e068a518dc6f4d048b9166b520c94b6f) grafana-loki: 2.7.1 -> 2.7.4
* [`a233af68`](https://github.com/NixOS/nixpkgs/commit/a233af68773ab7dbf6157a612ae0eaed02abe98c) android-tools: 33.0.3p2 -> 34.0.0
* [`983d0143`](https://github.com/NixOS/nixpkgs/commit/983d0143d07d494d10cb7368d18852aa815fb3f5) autorestic: 1.7.6 -> 1.7.7
* [`319cc6ca`](https://github.com/NixOS/nixpkgs/commit/319cc6ca3534ee6956bae42be85d7518f278cd02) chromium{Beta,Dev}: Switch to LLVM 15
* [`ba9cceac`](https://github.com/NixOS/nixpkgs/commit/ba9cceac7a142bf30ce892fc417f3f3a835caf78) arkade: 0.9.2 -> 0.9.3
* [`6b52f888`](https://github.com/NixOS/nixpkgs/commit/6b52f88815a5a539e940fdb191c480aded2a400a) ocaml-ng.ocamlPackages_4_14_unsafe_string: init
* [`da3dacd0`](https://github.com/NixOS/nixpkgs/commit/da3dacd0e6c3a2002cf124e9c30f588859aaf1a5) treewide: use ocaml-ng.ocamlPackages_4_14_unsafe_string
* [`3d70562d`](https://github.com/NixOS/nixpkgs/commit/3d70562dfd2253df3c1ae1731af3f8dfba5b88b0) leo2: add darwin support
* [`28b5084f`](https://github.com/NixOS/nixpkgs/commit/28b5084f40662c15e4d2546dbaa5664876de9298) statverif: add darwin support
* [`0d8cfbd0`](https://github.com/NixOS/nixpkgs/commit/0d8cfbd06cd277453e48ec44458d41c57c210d24) monotoneViz: migrate to OCaml 4.14
* [`6185e429`](https://github.com/NixOS/nixpkgs/commit/6185e429a66b5360db976a604cece6cc731dbe36) wyrd: migrate to OCaml 4.14
* [`3966519d`](https://github.com/NixOS/nixpkgs/commit/3966519d12be2fb3fded3420f1cc82d681b17b5d) libreoffice: wrapper.nix rewrite
* [`bf98b333`](https://github.com/NixOS/nixpkgs/commit/bf98b333ee4ca6b0ea3140bb5fe5e14910863caa) torq: 0.18.17 -> 0.18.19
* [`22561466`](https://github.com/NixOS/nixpkgs/commit/22561466b0d5fb333d0a065f4b70553d69f56348) aws-c-io: 0.13.15 -> 0.13.18
* [`16818343`](https://github.com/NixOS/nixpkgs/commit/16818343f11972ed7f591080992ba146790cc2f1) maintainers: add apfelkuchen6
* [`481f02f7`](https://github.com/NixOS/nixpkgs/commit/481f02f7dd1b21ddfc363ec30b99fcfac04deaec) mpv: allow scripts to add wrapper args
* [`219a017c`](https://github.com/NixOS/nixpkgs/commit/219a017ce41a7b92746473f111b620850890c23b) dotnet-sdk_7: 7.0.102 -> 7.0.201
* [`e7c8662c`](https://github.com/NixOS/nixpkgs/commit/e7c8662c07e4caa2da07b8e58c7d779f29905b82) BeatSaberModManager: Update nuget dependencies
* [`72123b64`](https://github.com/NixOS/nixpkgs/commit/72123b64d423a4e7c511c91c1b82074cd40e8a4d) goreleaser: 1.15.2 -> 1.16.0
* [`1694afe2`](https://github.com/NixOS/nixpkgs/commit/1694afe2370f28a4c2cc393d3cf8fcbf58254af9) cpm-cmake: 0.38.0 -> 0.38.1
* [`26622690`](https://github.com/NixOS/nixpkgs/commit/266226903f343f867d1d217cab2b8e56f4fdefdc) python310Packages.doorbirdpy: 2.2.1 -> 2.2.2
* [`9ae79a46`](https://github.com/NixOS/nixpkgs/commit/9ae79a46f8b2497f0ea35da3ab3cb475c4283a5b) bacon: 2.6.1 -> 2.6.2
* [`a3dfcb57`](https://github.com/NixOS/nixpkgs/commit/a3dfcb57c2b727f3b307f370a27f1f6255ca7813) kbs2: 0.7.1 -> 0.7.2
* [`be1d82d5`](https://github.com/NixOS/nixpkgs/commit/be1d82d5ca6c3e80442d91b1a45af66776326495) python310Packages.openapi-schema-validator: 0.3.4 -> 0.4.3
* [`f1479a8e`](https://github.com/NixOS/nixpkgs/commit/f1479a8e9ff0c57a4d90b7ea1a86777be152330c) python310Packages.openapi-spec-validator: 0.5.1 -> 0.5.5
* [`9ca5356d`](https://github.com/NixOS/nixpkgs/commit/9ca5356d8d4475a12e9ad4d3d611fddbc02d4aa6) python310Packages.openapi-core: 0.16.6 -> 0.17.0
* [`6f7d6eba`](https://github.com/NixOS/nixpkgs/commit/6f7d6eba8f310a14f50050d6240497c5b041ad90) uacme: 1.7.3 -> 1.7.4
* [`68852fbe`](https://github.com/NixOS/nixpkgs/commit/68852fbe7c5714761fba83fe0c75afaf1902850a) oh-my-zsh: 2023-03-04 -> 2023-03-06
* [`2689297c`](https://github.com/NixOS/nixpkgs/commit/2689297c50e2041d7f1846580f6bd4d784cd45f9) rustpython: 2022-10-11 -> 0.2.0
* [`1846e296`](https://github.com/NixOS/nixpkgs/commit/1846e296de59daa169d9fd703445bbc5c942c885) mcfly: 0.7.1 -> 0.8.0
* [`851e7062`](https://github.com/NixOS/nixpkgs/commit/851e70627a9c4c22dd77bc182b5d1feda59ceea3) python310Packages.evtx: fix build on darwin
* [`bb5edc48`](https://github.com/NixOS/nixpkgs/commit/bb5edc482e691dbf9d0a28348684b2af611c6711) rustpython: fix build on aarch64-linux
* [`7e29e1b2`](https://github.com/NixOS/nixpkgs/commit/7e29e1b2c2cb2adb79783f2393553fbfd52175c5) postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1
* [`ea593627`](https://github.com/NixOS/nixpkgs/commit/ea593627b9df5925f6a9c78698daedbaf2536753) python310Packages.pydata-sphinx-theme: 0.13.0 -> 0.13.1
* [`f6546a76`](https://github.com/NixOS/nixpkgs/commit/f6546a76559371bd690c30e4c4db8f898704ac31) python310Packages.jupyter-book: 0.14.0 -> 0.15.0
* [`fc9ceeba`](https://github.com/NixOS/nixpkgs/commit/fc9ceeba82d0f5c0b4be97ee333e58c41b7ab67d) brakeman: 5.4.0 -> 5.4.1
* [`95ae3fc8`](https://github.com/NixOS/nixpkgs/commit/95ae3fc851b46a1507f139a6def751f51cde086a) signalbackup-tools: 20230304-3 -> 20230305
* [`64967029`](https://github.com/NixOS/nixpkgs/commit/649670296e729ac4a9c6667fcb172ae24a939ff2) opencv2: add darwin dependencies
* [`f5d33bf1`](https://github.com/NixOS/nixpkgs/commit/f5d33bf1f62627d1f8032bc309d9e069fd0b13d0) terraform-providers.checkly: 1.6.3 → 1.6.4
* [`60894658`](https://github.com/NixOS/nixpkgs/commit/608946580f5eebd38bc2124a4418ef1ba44c0c2e) terraform-providers.dnsimple: 0.16.1 → 0.16.2
* [`4a968ef9`](https://github.com/NixOS/nixpkgs/commit/4a968ef9be13181f672d0bd0f95a1d6ed72c00fd) terraform-providers.external: 2.2.3 → 2.3.1
* [`24b1c515`](https://github.com/NixOS/nixpkgs/commit/24b1c515d10ba833fe3ec9954cf88953d42c5bbb) terraform-providers.google: 4.55.0 → 4.56.0
* [`63e53c25`](https://github.com/NixOS/nixpkgs/commit/63e53c25af0717bb2d19d35fc1a0267098bbed10) terraform-providers.google-beta: 4.55.0 → 4.56.0
* [`e9a108bb`](https://github.com/NixOS/nixpkgs/commit/e9a108bb8cb71af191e094a307310db9bc550e8d) terraform-providers.keycloak: 4.1.0 → 4.2.0
* [`4aee971d`](https://github.com/NixOS/nixpkgs/commit/4aee971db19c5df4aa4e9cee7d24ec4ef90e0364) terraform-providers.aws: 4.57.0 → 4.57.1
* [`70073985`](https://github.com/NixOS/nixpkgs/commit/70073985ae856f777639a4742943f48b317d7799) nixos/gemstash: init module
* [`b5a69971`](https://github.com/NixOS/nixpkgs/commit/b5a6997194937e3428daee359d89db84c9f64f11) flyctl: 0.0.475 -> 0.0.476
* [`a7f90a36`](https://github.com/NixOS/nixpkgs/commit/a7f90a36f103ea24f8766de766d3bc72a72c92bf) vector: 0.28.0 -> 0.28.1
* [`24af7f35`](https://github.com/NixOS/nixpkgs/commit/24af7f357fca0cfd7b596ed7ebf04a3e8a0ee37b) byacc: 20221229 -> 20230219
* [`d0879528`](https://github.com/NixOS/nixpkgs/commit/d0879528a63d927b4d571ed9242b8ab9b7f2fda8) Patch hercules-ci-agent to support cachix 1.3
* [`14af7c5a`](https://github.com/NixOS/nixpkgs/commit/14af7c5a37dcb5c09e13b458ca54a794b8641df2) directx-shader-compiler: 1.7.2212 -> 1.7.2212.1
* [`d966df07`](https://github.com/NixOS/nixpkgs/commit/d966df07bf7846a471ee1186c7039e1ca91f9080) pulumi: 3.55.0 -> 3.56.0
* [`46b4fad0`](https://github.com/NixOS/nixpkgs/commit/46b4fad03e60e68a728ace81aaf8db2b6af7d31a) conftest: 0.39.1 -> 0.39.2
* [`09b38d10`](https://github.com/NixOS/nixpkgs/commit/09b38d10cc0930fc1005e703cd26c99f5b5d55c6) libfabric: 1.17.0 -> 1.17.1
* [`3e79b30f`](https://github.com/NixOS/nixpkgs/commit/3e79b30f642ccaf6b3f25c851ada5b34d94f42ed) browserpass: 3.0.10 -> 3.1.0
* [`9550348c`](https://github.com/NixOS/nixpkgs/commit/9550348c1aea20ecf2a10a4d725bc5c30c8452e3) ocamlPackages.{arp,ethernet,tcpip}: some cleaning
* [`7fa20e70`](https://github.com/NixOS/nixpkgs/commit/7fa20e70ea7e1c98e8f6ae1d90564d1d0444e4f2) ocamlPackages.mirage-stack: 2.2.0 → 4.0.0
* [`b13286ad`](https://github.com/NixOS/nixpkgs/commit/b13286ad0271612bcc0e7bb198da42b37bc2eaf5) ocamlPackages.mirage-protocols: 5.0.0 → 8.0.0
* [`42441152`](https://github.com/NixOS/nixpkgs/commit/42441152b4bc50d8b92f59b03ddba55c5a02317a) python310Packages.peaqevcore: 12.2.6 -> 12.2.7
* [`b879ef25`](https://github.com/NixOS/nixpkgs/commit/b879ef25813dff5803fdbb1423d1aa0d014ad0ed) python310Packages.aioesphomeapi: 13.4.1 -> 13.5.0
* [`a3dcdef4`](https://github.com/NixOS/nixpkgs/commit/a3dcdef4a78b4a459fd0aa06d99ad82623826131) chezmoi: 2.31.0 -> 2.31.1
* [`1f1271bd`](https://github.com/NixOS/nixpkgs/commit/1f1271bd764e3732666c1bc389aec7089f293bdc) gitsign: add developer-guy to maintainers list
* [`bb26db7d`](https://github.com/NixOS/nixpkgs/commit/bb26db7dd930499c3a759623ee05473953094cfd) python310Packages.nestedtext: add changelog to meta
* [`49a67605`](https://github.com/NixOS/nixpkgs/commit/49a676052101f4b2206a2b559181ab6050c0eac4) python310Packages.nestedtext: equalize
* [`dba4f381`](https://github.com/NixOS/nixpkgs/commit/dba4f3816648b2a1a53df0b7b4ad23619d97e7f7) python310Packages.nestedtext: disable on unsupported Python releases
* [`6509273d`](https://github.com/NixOS/nixpkgs/commit/6509273d853b8d0b3d90fe5edfd43397525b1753) python310Packages.nestedtext: 1.2 -> 3.5
* [`cab5d3d7`](https://github.com/NixOS/nixpkgs/commit/cab5d3d75b6488ce5614b7e4fd074f74919a4363) circleci-cli: 0.1.23667 -> 0.1.23816
* [`9978ed0d`](https://github.com/NixOS/nixpkgs/commit/9978ed0d20b8f899c3d08a30089c0c3310359262) elmPackages.*: Semi automated update
* [`d6630686`](https://github.com/NixOS/nixpkgs/commit/d6630686893dc78f4d2ab908d845cae131443224) python310Packages.parametrize-from-file: disable failing test
* [`a0abef4a`](https://github.com/NixOS/nixpkgs/commit/a0abef4ae64d2c2161c1fa21ac7a6c222b6caf7f) python310Packages.google-cloud-websecurityscanner: 1.11.1 -> 1.12.0
* [`2a68c63f`](https://github.com/NixOS/nixpkgs/commit/2a68c63fc6c89ee7b9039e63cb612eea9dbc0c01) stunnel: 5.67 -> 5.69
* [`546adc67`](https://github.com/NixOS/nixpkgs/commit/546adc67e70ce0b1aa6a34ad2ccc0238548320ed) organicmaps: 2023.01.25-3 -> 2023.03.05-5
* [`fd296e5d`](https://github.com/NixOS/nixpkgs/commit/fd296e5d4d0649390bae0ec26a680f2db3f3861e) colima: 0.5.2 -> 0.5.3
* [`f59d3afc`](https://github.com/NixOS/nixpkgs/commit/f59d3afcd5e0d0e7e763155254b89ef115ecb654) organicmaps: add updateScript
* [`0fd67b46`](https://github.com/NixOS/nixpkgs/commit/0fd67b467ad31cb7af901989df3e5e4a59f9e91d) gobgp: 3.11.0 -> 3.12.0
* [`329e37ab`](https://github.com/NixOS/nixpkgs/commit/329e37ab4c2db9065900e14ce96b286076f0219a) d2: 0.2.2 -> 0.2.3
* [`106f543e`](https://github.com/NixOS/nixpkgs/commit/106f543e505af38b360748388cbb0e1e0adb9637) zellij: 0.34.4 -> 0.35.1
* [`5fc58a9c`](https://github.com/NixOS/nixpkgs/commit/5fc58a9cb4370cf4cecbbeeaf101211beee8b61e) jimtcl: 0.81 -> 0.82
* [`dc45d4e5`](https://github.com/NixOS/nixpkgs/commit/dc45d4e5a7d69b364c7623637d168f97fd6cfa12) cplay-ng: 5.1.0 -> 5.2.0
* [`705ee06f`](https://github.com/NixOS/nixpkgs/commit/705ee06f10d55a7b1f61b859be81a47b583df033) dillong: add meta.mainProgram
* [`79394475`](https://github.com/NixOS/nixpkgs/commit/7939447527bf256129c8b44883f31edb261de165) Update pkgs/development/r-modules/default.nix
* [`49878856`](https://github.com/NixOS/nixpkgs/commit/49878856e6cde3ae674f470da407e3bde2f55c9d) https://github.com/NixOS/nixpkgs/pull/188334#issuecomment-1445425412
* [`27375af8`](https://github.com/NixOS/nixpkgs/commit/27375af8c3a4b2adb696075d424e6635b21fce24) flyctl: 0.0.476 -> 0.0.477
* [`4830391e`](https://github.com/NixOS/nixpkgs/commit/4830391e718434341699eada1637aa8261297a6a) youtube-tui: init at 0.7.0
* [`74bbf74f`](https://github.com/NixOS/nixpkgs/commit/74bbf74fc935b549127d8d65600c58c31698249f) maintainers: add Ruixi-rebirth
* [`e34328aa`](https://github.com/NixOS/nixpkgs/commit/e34328aa3a0949f955ee96317c3bcf70f5c5ec07) netcoredbg: 2.0.0-895 -> 2.2.0-961
* [`c0a2b57e`](https://github.com/NixOS/nixpkgs/commit/c0a2b57e200e41f4b33af9e2f14a4b861c88811d) maintainers: add konradmalik
* [`62a0d2eb`](https://github.com/NixOS/nixpkgs/commit/62a0d2eb9fcb81a94e1652d4a0d2a4c47a3059cd) ginkgo: 2.8.4 -> 2.9.0
* [`253cdabf`](https://github.com/NixOS/nixpkgs/commit/253cdabfb6271fdfa855cbc120db1bee4d73998b) git-branchless: 0.6.0 -> 0.7.0
* [`561ec56a`](https://github.com/NixOS/nixpkgs/commit/561ec56a304e3d707da6a7f842cc2158fcefae12) acr: refactor
* [`6713a092`](https://github.com/NixOS/nixpkgs/commit/6713a092915702c8d45a5b22f8f752ca6eea89c8) flyctl: 0.0.476 -> 0.0.477
* [`c3982aae`](https://github.com/NixOS/nixpkgs/commit/c3982aae4e4af665e3fdd7d42d04752a2f378db8) forkstat: 0.03.00 -> 0.03.01
* [`4839388d`](https://github.com/NixOS/nixpkgs/commit/4839388d2b95d909f53236e2d8f899aa811ba76a) byacc: refactor
* [`20b50b7a`](https://github.com/NixOS/nixpkgs/commit/20b50b7a8f853f209421c8951617b376e2e819b5) jabref: 5.7 -> 5.9
* [`43f2c5ef`](https://github.com/NixOS/nixpkgs/commit/43f2c5ef663ade65f947ef3f83b76da50590f0f6) teleport: 12.0.2 -> 12.1.0
* [`6f3e07ed`](https://github.com/NixOS/nixpkgs/commit/6f3e07edfafe126902643cb7cafee89692091e89) python310Packages.google-cloud-spanner: 3.27.1 -> 3.28.0
* [`80380122`](https://github.com/NixOS/nixpkgs/commit/803801225594149d8b4f3836acd57fca4d366816) janet: 1.26.0 -> 1.27.0
* [`3032954d`](https://github.com/NixOS/nixpkgs/commit/3032954df3660ea74c72e69b42ecb97606c290ad) python310Packages.snapcast: 2.3.1 -> 2.3.2
* [`ae3b83c8`](https://github.com/NixOS/nixpkgs/commit/ae3b83c809f5ef9140c597b3d18896c02a5dcd25) hugo: 0.111.1 -> 0.111.2
* [`27eab436`](https://github.com/NixOS/nixpkgs/commit/27eab436bd6c9bb50bf48e9c4587bdf135ec3fdd) nixos/tests/hostname.nix: nixpkgs-fmt
* [`5566961d`](https://github.com/NixOS/nixpkgs/commit/5566961d2e43a688b0892fafe6c0f65aea1bf6b5) nixosTests.hostname: stop using deprecated nodes.machine.config
* [`ddf52e63`](https://github.com/NixOS/nixpkgs/commit/ddf52e637ced39a041cb70c95c30c4fe2095608c) gopsuinfo: 0.1.2 -> 0.1.3
* [`10684ae9`](https://github.com/NixOS/nixpkgs/commit/10684ae9c4362edf2b469548d7315b1b2584af7e) python3Packages.nix-prefetch-github: 6.0.0 -> 6.0.1
* [`525aff3a`](https://github.com/NixOS/nixpkgs/commit/525aff3ab33ab996d3532a45ec5478295c55a169) elisp-packages/manual-packages.nix: use self-scoped callPackage
* [`2acbdc41`](https://github.com/NixOS/nixpkgs/commit/2acbdc41e9c7ba55d2d876ab15039ce49e13bf8d) ffado: 2.4.3 -> 2.4.7
* [`9cb0772d`](https://github.com/NixOS/nixpkgs/commit/9cb0772d436dd64f319643d1f0b78076237ed82a) calcure: init at 2.8.2
* [`66b05cfb`](https://github.com/NixOS/nixpkgs/commit/66b05cfb9a00cfd8ec246e9591d5afbea7adca2e) dbmate: 1.16.2 -> 2.0.1
* [`23e0077d`](https://github.com/NixOS/nixpkgs/commit/23e0077d3653757c405a848d07ddbd37507a7ece) fizz: 2023.02.27.00 -> 2023.03.06.00
* [`f78d3c7d`](https://github.com/NixOS/nixpkgs/commit/f78d3c7d5f671fb2917e5212a20daab099cdbb05) jql: 5.1.6 -> 5.1.7
* [`1af3c49d`](https://github.com/NixOS/nixpkgs/commit/1af3c49d48ee8575dbe47994ef8ec55a6415d876) clojure: 1.11.1.1237 -> 1.11.1.1252
* [`2ca73535`](https://github.com/NixOS/nixpkgs/commit/2ca73535423e4252803b41d843ef59309658af49) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`35ca4727`](https://github.com/NixOS/nixpkgs/commit/35ca4727fbf3cedef60681f23f5384aa8e758998) python310Packages.slack-sdk: 3.20.0 -> 3.20.1
* [`6d8041b0`](https://github.com/NixOS/nixpkgs/commit/6d8041b0532c8b51a93f68c9737feecbb195d32a) writeShellApplication: Prefer lib.getExe over unwrapped ShellChecked
* [`0ba1c25b`](https://github.com/NixOS/nixpkgs/commit/0ba1c25b620047a8c05cccce308fcb76c25c1780) python310Packages.hvac: 1.0.2 -> 1.1.0
* [`04a5d95d`](https://github.com/NixOS/nixpkgs/commit/04a5d95dbf13ed3776edc7c24927cf76975f37aa) maintainers: add milran
* [`42cda97c`](https://github.com/NixOS/nixpkgs/commit/42cda97c500b54ad2e8617d515cc198a027dceaa) gqlgenc: init at 0.11.3
* [`5b9628a9`](https://github.com/NixOS/nixpkgs/commit/5b9628a9ed381e34171c88cd8f17f1b6b7614dcc) teleport: add justinas to maintainers
* [`701a8387`](https://github.com/NixOS/nixpkgs/commit/701a838718504aa719de3913be0530c35b83da36) teleport: add arianvp to maintainers
* [`1f2cf28a`](https://github.com/NixOS/nixpkgs/commit/1f2cf28aa96e39f23abd7fa367273f9800f87521) algolia-cli: 1.3.0 -> 1.3.1
* [`73f2f4c6`](https://github.com/NixOS/nixpkgs/commit/73f2f4c6a8d503c5f179a84162a2eda151a93874) freac: 1.1.6 -> 1.1.7
* [`af13b8f8`](https://github.com/NixOS/nixpkgs/commit/af13b8f8523a6c2f74a207210f30d8c9f54ec3cd) boca: 1.0.6a -> 1.0.7
* [`19f0a78c`](https://github.com/NixOS/nixpkgs/commit/19f0a78c195223e7021ff4d16bad71c6f4cb981d) mpvScripts.uosc: init at 4.6.0
* [`b85c1e31`](https://github.com/NixOS/nixpkgs/commit/b85c1e319e28161044e0ca1a33cdb69310d1e93f) node2nix: pull in patch to fix bin scripts with crlf line-endings
* [`0835e5a1`](https://github.com/NixOS/nixpkgs/commit/0835e5a189bf0ae676ccfd91afaf0e6c39c65b28) nodePackages: regen only node-env
* [`27688662`](https://github.com/NixOS/nixpkgs/commit/2768866261ee21659edc6427f66d5b5b0f613752) nixosTests.pantheon: ensure the password box is focused when login
* [`94ce5a87`](https://github.com/NixOS/nixpkgs/commit/94ce5a875a001d285537a8757fd6e63d6b3f93f3) pkgs/tools/wayland: enable strictDeps
* [`47ace7b0`](https://github.com/NixOS/nixpkgs/commit/47ace7b0af442b2e6bdb8728330622c7dbc81499) pkgs/tools/nix: enable strictDeps
* [`9bfeb0d7`](https://github.com/NixOS/nixpkgs/commit/9bfeb0d751e7bbffb3d078f6a87804dd26ceae19) checkip: 0.44.2 -> 0.45.1
* [`5eb5d881`](https://github.com/NixOS/nixpkgs/commit/5eb5d881a49ce1eeecf24dc501efead1f70fc620) nixos/nginx: add defaultMimeTypes option
* [`3e38add9`](https://github.com/NixOS/nixpkgs/commit/3e38add9b06f92e0508acd7013bd4e15c388bd8a) maintainers: add connorbaker
* [`518ee5c9`](https://github.com/NixOS/nixpkgs/commit/518ee5c99bb9980deeaf2db102bf7abca901ad8b) zine: 0.11.1 -> 0.12.0
* [`2ba99961`](https://github.com/NixOS/nixpkgs/commit/2ba999615a0a558660a4eb00d42704566223264d) psql2csv: init at 0.12
* [`d8831d92`](https://github.com/NixOS/nixpkgs/commit/d8831d9224687aeb8e5b49ec7d626c94fa61d2e3) somebar: 1.0.0 -> 1.0.3
* [`2f430da1`](https://github.com/NixOS/nixpkgs/commit/2f430da1c6aaeb4306427b77f139f53dcd729e08) Replacing MRAN mirror with posit
* [`22cf9cd0`](https://github.com/NixOS/nixpkgs/commit/22cf9cd0112c9765d99226e38bdce9b7d82fba7d) sfeed: 1.6 -> 1.7
* [`de1f8d6b`](https://github.com/NixOS/nixpkgs/commit/de1f8d6bd89b43d0cd09ee13c94e5c60736b8333) maestro: 1.23.0 -> 1.24.0
* [`02cd0a5d`](https://github.com/NixOS/nixpkgs/commit/02cd0a5dfcb99b162791bade2d2888c8187a6a92) sherpa: 2.2.13 -> 2.2.14 ([nixos/nixpkgs⁠#220016](https://github.com/nixos/nixpkgs/issues/220016))
* [`27684f88`](https://github.com/NixOS/nixpkgs/commit/27684f8832048988eecdced28f3879db396a9b7e) mindustry: 141.2 -> 142
* [`acf1389e`](https://github.com/NixOS/nixpkgs/commit/acf1389e2fbc757cbcd731bf1c26a1ef940b2e0f) goreleaser: add caarlos0 to maintainers list
* [`a76b5ced`](https://github.com/NixOS/nixpkgs/commit/a76b5ced8b75f6b3767d6a0349abc5a8b5efb777) goreleaser: add developer-guy to maintainers list
* [`25939765`](https://github.com/NixOS/nixpkgs/commit/25939765180ed716662ed2c441ebe2506202cd8b) csdr: 0.18.0 -> 0.18.1
* [`7e1bcf5f`](https://github.com/NixOS/nixpkgs/commit/7e1bcf5f38a361828604e68efc98825ee0e060c2) glooctl: 1.13.8 -> 1.13.9
* [`0c370aab`](https://github.com/NixOS/nixpkgs/commit/0c370aab6450244197fcd08814a42cdf560ea973) aws-sso-cli: 1.9.9 -> 1.9.10
* [`937e716d`](https://github.com/NixOS/nixpkgs/commit/937e716d4ea11874fdd6381ced8a93f42f4d7273) python3Packages.sphinxext-opengraph: 0.7.5 -> 0.8.1
* [`8460c8b1`](https://github.com/NixOS/nixpkgs/commit/8460c8b124a00c603ccf1786e1a7d19d58874790) tlaps: migrate to OCaml 4.14
* [`0a11517a`](https://github.com/NixOS/nixpkgs/commit/0a11517a84f5eab2e7d4ef5219325f20cc52653f) act: 0.2.42 -> 0.2.43
* [`985e04ac`](https://github.com/NixOS/nixpkgs/commit/985e04ac1b00e59cc927e42812576845c10c2e78) maintainers: add kirillrdy
* [`72d7d2e9`](https://github.com/NixOS/nixpkgs/commit/72d7d2e9cc08bd38fec8cd96fe1bb0b743e87f2d) awsebcli: add kirillrdy as maintainer
* [`ecfff018`](https://github.com/NixOS/nixpkgs/commit/ecfff018eb859fe3d77f3c27a61c7cc11fe54d52) masscan: add patch to fix resume functionality ([nixos/nixpkgs⁠#219905](https://github.com/nixos/nixpkgs/issues/219905))
* [`3d206db3`](https://github.com/NixOS/nixpkgs/commit/3d206db3c4ad642…
knl added a commit to knl/dotskel that referenced this pull request Mar 13, 2023
## Changelog for nixpkgs:
Branch: master
Commits: [nixos/nixpkgs@d154f809...4b1a1efe](https://github.com/nixos/nixpkgs/compare/d154f809e9c3c47fee72186aa3ff6479403435d4...4b1a1efe99a7a8206544c0caae77eee43bb8db57)

* [`037167ae`](https://github.com/NixOS/nixpkgs/commit/037167ae17fefe6b5dc86dc05f0dd168031c3c68) xf86videointel: Use the `crocus` and `iris` DRI drivers
* [`51ba2337`](https://github.com/NixOS/nixpkgs/commit/51ba23371779e1018fc89573f94ca414c09c4e61) pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32
* [`efbeb1bb`](https://github.com/NixOS/nixpkgs/commit/efbeb1bb5e90ab3ca2d5184e446cea4fa97c29cb) prometheus-cpp: 1.0.1 -> 1.1.0
* [`57b09f29`](https://github.com/NixOS/nixpkgs/commit/57b09f29c6345f0ca701b79760dfd23443c3a982) vscode-extensions.jellyedwards.gitsweep: init at 0.0.15
* [`00ae655e`](https://github.com/NixOS/nixpkgs/commit/00ae655e639e620ee5dcfd6f1bd9ccb4e337eea1) btrbk: Use sudo or doas based on configuration
* [`3144b00d`](https://github.com/NixOS/nixpkgs/commit/3144b00d2486ca5d85098a688a76a5e945de411d) btrbk: add doas variant of module test
* [`9a848178`](https://github.com/NixOS/nixpkgs/commit/9a8481780b31e101dc941a3d619ce4803dc5d525) libsForQt515.solid: patch binary search paths
* [`a7ea3911`](https://github.com/NixOS/nixpkgs/commit/a7ea3911798120047beb25be107138a0c547dce2) swww: init at 0.5.0
* [`61840f71`](https://github.com/NixOS/nixpkgs/commit/61840f7181bc17f3c808fcae5acc656a2408ab7b) nixos/prometheus: Add new relabel_configs actions
* [`f88873d8`](https://github.com/NixOS/nixpkgs/commit/f88873d877d17617ed11a8f6aba49db9ae57cdbb) runelite: 2.1.5 -> 2.5.0
* [`2f8266e0`](https://github.com/NixOS/nixpkgs/commit/2f8266e02234a6a2e2ce2b939366e63b5369c278) sonic-pi: add updateScript
* [`5988ada8`](https://github.com/NixOS/nixpkgs/commit/5988ada8358cb66b5486889db22aba37caaf4f4c) sonic-pi: add ruby to nativeBuildInputs
* [`e7383a32`](https://github.com/NixOS/nixpkgs/commit/e7383a32e365371b9d62c30f16089687db7cb5d4) gitlab-pages: Maintain together with the rest of GitLab + add to...
* [`baf1f129`](https://github.com/NixOS/nixpkgs/commit/baf1f1293b289ce53d9b660465cd68e1a3e00b96) ruby: Fix withPackages on darwin with makeBinaryWrapper
* [`9fdd9729`](https://github.com/NixOS/nixpkgs/commit/9fdd97298b6b8b0a8385ada8b81d9d1d56ed7c34) nixos/java: add binfmt option
* [`dbd563b9`](https://github.com/NixOS/nixpkgs/commit/dbd563b9b8c20071075bcdd5912b99486b3fcfa3) nixos/gitlab: Improve support for GitLab Pages
* [`2d4f4e9b`](https://github.com/NixOS/nixpkgs/commit/2d4f4e9bdfdcc69ea19299150db5c26c7aa4e44a) nixos/gitlab: Handle secrets in GitLab Pages config
* [`44e5b418`](https://github.com/NixOS/nixpkgs/commit/44e5b41871ed5afdaa927e4bbf7c00362ebf54cb) lib/systems/parse: stop considering armv8a able to execute armv7l
* [`678eed32`](https://github.com/NixOS/nixpkgs/commit/678eed323ffd90117472cd432ebe85dddaff07f1) nixos/grub: Name initrd-secrets by system, not by initrd
* [`012434d4`](https://github.com/NixOS/nixpkgs/commit/012434d4815a7a3221c2f8b9568cb6285e810059) feedbackd: 0.0.1 -> 0.0.3
* [`6f63865c`](https://github.com/NixOS/nixpkgs/commit/6f63865cf470ce99b36bceacbefbb6886d05be51) dockerTools: Add minimal test case for [nixos/nixpkgs⁠#214434](https://github.com/nixos/nixpkgs/issues/214434)
* [`f4e4cac0`](https://github.com/NixOS/nixpkgs/commit/f4e4cac0c86f0e16aac773083aebbfc0e7daea43) dockerTools: Correctly unpack duplicate rootfs diffs
* [`9377f94a`](https://github.com/NixOS/nixpkgs/commit/9377f94ac5c69eaeca0a2a9d13a41ea7f41c0b7d) swww: v0.5.0 -> v0.7.0
* [`a124a517`](https://github.com/NixOS/nixpkgs/commit/a124a517b2e66078143beaae058e394aa5c1acc0) Update pkgs/tools/wayland/swww/default.nix
* [`2a5bf1fc`](https://github.com/NixOS/nixpkgs/commit/2a5bf1fcdfc8658678bc9305677dfa0fda907367) Update pkgs/tools/wayland/swww/default.nix
* [`2bf1fca5`](https://github.com/NixOS/nixpkgs/commit/2bf1fca5ac68b085bbc42f445731791cf5aa3b1b) Update pkgs/tools/wayland/swww/default.nix
* [`68f5e955`](https://github.com/NixOS/nixpkgs/commit/68f5e9554ffa3cfee31786f9a3013ebd8a7d8308) Add maintainers
* [`7c201f6b`](https://github.com/NixOS/nixpkgs/commit/7c201f6b53bf4acc77184d110cd2cfd72d065bae) Add whitespaces for readability.
* [`0566d27d`](https://github.com/NixOS/nixpkgs/commit/0566d27d03a7b9c285045f57004a6ba2c2613454) coder: fix web frontend building
* [`56ecab70`](https://github.com/NixOS/nixpkgs/commit/56ecab709a5a6e49049c0892a7cc59cfa22bdd98) nixos/coder: init module
* [`eb38ad04`](https://github.com/NixOS/nixpkgs/commit/eb38ad04efae0ebcd7217c4ccace3da0102d85af) dockerTools: ensure runAsRoot script not optimized away in test
* [`c66cabe3`](https://github.com/NixOS/nixpkgs/commit/c66cabe33ea1f969ef9562feeef0a015b83a60b1) dockerTools: use more familiar terminology to describe test image
* [`298c543e`](https://github.com/NixOS/nixpkgs/commit/298c543e55284a3be8e8785302883fb873e005af) dockerTools: Specify 'latest' tag for repeated layer test image
* [`84e04ccf`](https://github.com/NixOS/nixpkgs/commit/84e04ccf8570e9f8072486f7d750d326225c7117) dockerTools: Preprocess layers list before unpack to handle repeated layers
* [`c7fbd40f`](https://github.com/NixOS/nixpkgs/commit/c7fbd40fd152506057d84e3e656dd564164168d2) groff: Add enableIconv and enableLibuchardet option
* [`235d9e21`](https://github.com/NixOS/nixpkgs/commit/235d9e218736a7d930992e7297bef1182d69fd60) lib/licenses.nix: Add cc-by-nc-nd-30
* [`4efb17b5`](https://github.com/NixOS/nixpkgs/commit/4efb17b50b96b9058d646ecec8d632d69d3c9633) dendrite: 0.11.0 -> 0.11.1
* [`f0ddf281`](https://github.com/NixOS/nixpkgs/commit/f0ddf281c593b82a2bd11110e8147ba85a1de70c) sane-backends: 1.1.1 -> 1.2.1
* [`c845a281`](https://github.com/NixOS/nixpkgs/commit/c845a2815fac9fc3ad40a2095aa3d3d129616af1) cargo-pgx: add buildPgxExtension
* [`4e189d76`](https://github.com/NixOS/nixpkgs/commit/4e189d769bdfb7a220da5cd98413d63d5768489a) timescaledb-toolkit: init at 1.14.0
* [`9dc7a05a`](https://github.com/NixOS/nixpkgs/commit/9dc7a05a85a0b051d208f41ddca0f6cdb6e6ff06) cargo-pgx/timescaledb_toolkit: add nixos test
* [`5287f144`](https://github.com/NixOS/nixpkgs/commit/5287f1446fbb227f75f75c2ac5df59c9cd7ca4e6) Apply suggestions from code review
* [`3c486263`](https://github.com/NixOS/nixpkgs/commit/3c4862636fd6a29f69a7b43f82a3cf070a9c650d) linuxPackages.ipu6-drivers: init at 2023-01-17
* [`134e4a64`](https://github.com/NixOS/nixpkgs/commit/134e4a6473a032513c2bea03035342aacaf3f53d) ipu6-camera-bin: init at 2022-11-12
* [`4269391e`](https://github.com/NixOS/nixpkgs/commit/4269391e56b015472b8f238c1ae52442e168348f) ipu6-camera-hal: init at 2023-01-09
* [`c4c9f600`](https://github.com/NixOS/nixpkgs/commit/c4c9f600e7a09bb0044fc10ea3ae62a3c65b76b5) gst_all_1.icamerasrc: init at 202212109
* [`9b4f6d4d`](https://github.com/NixOS/nixpkgs/commit/9b4f6d4d9278632b1e6c28e83ed9764bd0387c43) linuxPackages.ivsc-driver: init at 2023-01-06
* [`6b338572`](https://github.com/NixOS/nixpkgs/commit/6b3385723874fc580a854701292a9a0c7ede4482) ivsc-firmware: init at 2022-11-02
* [`b38d6054`](https://github.com/NixOS/nixpkgs/commit/b38d6054d789ec8f12a11ed7c2107ce770be7a98) linuxPackages.ipu6-drivers: Reuse ivsc-driver source
* [`7d0299ea`](https://github.com/NixOS/nixpkgs/commit/7d0299eaf38e8e145fd6429d5f224bc9e64399d6) dotnet-sdk_6: 6.0.405 -> 6.0.406
* [`9b54e8ab`](https://github.com/NixOS/nixpkgs/commit/9b54e8abdef0ae7389c6fefa7ff2d27461950169) python3Packages.debugpy: lldb support
* [`bacfd9df`](https://github.com/NixOS/nixpkgs/commit/bacfd9df0915c8bb5c4b40234d9cd980196f2398) bitwig-studio: 4.4.6 -> 4.4.8
* [`ee89f8e1`](https://github.com/NixOS/nixpkgs/commit/ee89f8e1e558c2021a7bea8a7dd50b9521afb772) navidrome: 0.49.1 -> 0.49.3
* [`7a67b4c2`](https://github.com/NixOS/nixpkgs/commit/7a67b4c28ba8a303dc0ec20bddeaa077df6da165) fftwQuad: Fix build on Darwin by forcing gcc
* [`51417891`](https://github.com/NixOS/nixpkgs/commit/514178918f7f97a066911c0ce3fc2d41f550a934) 0.7.0 -> 0.7.2
* [`b3b79fc4`](https://github.com/NixOS/nixpkgs/commit/b3b79fc41eba5f31467bd5aa568ee52a5202ca7a) linuxPackages.systemtap: 4.5 -> 4.8
* [`0061f844`](https://github.com/NixOS/nixpkgs/commit/0061f844c9bbc993606eecd79243a07fb358443e) onlyoffice-documentserver: 7.3.0 -> 7.3.2
* [`72840a9f`](https://github.com/NixOS/nixpkgs/commit/72840a9f2f118c91f1421b8e8773fda576ea9114) peek: switch to ffmpeg-full
* [`fef1cfb0`](https://github.com/NixOS/nixpkgs/commit/fef1cfb05a1fa5596591058fe56fbb120b83d550) python3Packages.grpcio: Fix build parallelism
* [`f83f0f8d`](https://github.com/NixOS/nixpkgs/commit/f83f0f8dfaf0f7ec853597fa236340bc1873d315) python3Packages.mixins: init at 0.1.4
* [`e78dc938`](https://github.com/NixOS/nixpkgs/commit/e78dc938d81cc175f4af9da0d94771c39aa43cd5) nixos/qemu-vm: fix minor typo
* [`9f57a615`](https://github.com/NixOS/nixpkgs/commit/9f57a615e4f912c83d3f66d8e051c1b18b6ba2d3) nifi: 1.16.3 -> 1.20.0
* [`4d547243`](https://github.com/NixOS/nixpkgs/commit/4d547243a283353e7cb1c39fe76efa66f18ecf3c) signal-desktop: 6.5.1 -> 6.7.0, signal-desktop-beta: 6.6.0-beta.1 -> 6.8.0-beta.1
* [`2c7af955`](https://github.com/NixOS/nixpkgs/commit/2c7af95567179d59340bf54800642b851133dd3c) pre-commit: 2.20.0 -> 3.1.0
* [`4e9350b6`](https://github.com/NixOS/nixpkgs/commit/4e9350b673f59f47ad0eeffe5d4981a6e67e455b) BeatSaberModManager: 0.0.4 -> 0.0.5
* [`1e2257a4`](https://github.com/NixOS/nixpkgs/commit/1e2257a4584ee372ab772741e5546bed6244d591) maintainers: update lunik1's gpg key
* [`91294961`](https://github.com/NixOS/nixpkgs/commit/912949612371d0d6a26640992f13dfbec3c06711) libheif: 1.14.2 -> 1.15.1
* [`eddb6a1b`](https://github.com/NixOS/nixpkgs/commit/eddb6a1b6241303c0310993294662e9347a2435d) hunspell: fix spanish-language dictionaries
* [`b4ff692b`](https://github.com/NixOS/nixpkgs/commit/b4ff692b80a031fb0c9715208a4aca4398430fd9) orchis-theme: 2022-10-19 -> 2023-02-26
* [`ab0eeaaa`](https://github.com/NixOS/nixpkgs/commit/ab0eeaaa3687263741fcd5307587bd4be1902e48) github-runner: add update script
* [`b87b0dba`](https://github.com/NixOS/nixpkgs/commit/b87b0dba523ce77b07ed0a2967c12d6ded3a1d5b) github-runner: add `sourceProvenance` and `changelog` to `meta`
* [`2f813ae1`](https://github.com/NixOS/nixpkgs/commit/2f813ae18b27bd926595be2b9e9e7f7e696af193) github-runner: use `buildDotnetModule`
* [`b22b1f48`](https://github.com/NixOS/nixpkgs/commit/b22b1f4874a1614307b4efa8d5309301832685e4) github-runner: patch access to `.env` and `.path`
* [`137db830`](https://github.com/NixOS/nixpkgs/commit/137db83090cf371369a48111b3bd1c888288f19e) nixos/github-runners: use `Runner.Listener` directly for registration
* [`e8df83d4`](https://github.com/NixOS/nixpkgs/commit/e8df83d417a65f84914ee27da98b870c0e7d143c) nixos/tests/github-runner: init
* [`5a65a419`](https://github.com/NixOS/nixpkgs/commit/5a65a419627fa1746fac2d8b1a7219a47908e781) libre: use cmake for configurePhase
* [`67f93ae2`](https://github.com/NixOS/nixpkgs/commit/67f93ae299730480bd4a7bfd77a1b10322b682c6) librem: use cmake for configurePhase
* [`9a584068`](https://github.com/NixOS/nixpkgs/commit/9a584068b438be375dc258adbe010bdbdf70eab1) wakatime: 1.61.0 -> 1.68.1
* [`c4fc77a0`](https://github.com/NixOS/nixpkgs/commit/c4fc77a0c987f48f4927bbbbd295ed3ecafd94c0) python3Packages.qtile-extras: init at 0.22.1
* [`4c8b75ed`](https://github.com/NixOS/nixpkgs/commit/4c8b75ed9a4a2583b1b8f58745852d0f4fa49fcc) dotnetPackages.Nuget: 5.6.0.6489->6.3.1.1
* [`476b6f8d`](https://github.com/NixOS/nixpkgs/commit/476b6f8d6c69084280fa691fdd7b12109fe0534d) python310Packages.deid: init at 0.3.21
* [`067d00f7`](https://github.com/NixOS/nixpkgs/commit/067d00f76581ee21787c376e0d3b01bc9ccdf31b) bubblewrap: 0.7.0 -> 0.8.0
* [`476bb883`](https://github.com/NixOS/nixpkgs/commit/476bb8830866751e07edf015c78e00c0c951978f) nixos/atop: Don't choke if no existing atop logs
* [`f0a6216e`](https://github.com/NixOS/nixpkgs/commit/f0a6216eebb3a6693b111e2927e10f520f6c479a) mpv: enable swift support
* [`5b8e896d`](https://github.com/NixOS/nixpkgs/commit/5b8e896dbadd36fecc96dc77216517599c260ca7) mpv: Switch to apple_sdk_11_0 for darwin
* [`8a28ae85`](https://github.com/NixOS/nixpkgs/commit/8a28ae851dee5306de51352300fceb692bd9c389) mpv: Only enable swift support on aarch64-darwin
* [`0acc6df7`](https://github.com/NixOS/nixpkgs/commit/0acc6df7423fc042f29a0df8a3c39249b2e901e9) refactor: Add spacing around tests
* [`73981dd9`](https://github.com/NixOS/nixpkgs/commit/73981dd9c24d3b7529c12ea83c4d59c1377a2b99) feat: Create desktop item for `appimage-run`
* [`ef5dc1f9`](https://github.com/NixOS/nixpkgs/commit/ef5dc1f99490f24a6b367222fa590d8d91bca4c7) jid: Use buildGoModule
* [`4e0525a8`](https://github.com/NixOS/nixpkgs/commit/4e0525a8cdb370d31c1e1ba2641ad2a91fded57d) configuration.nix: suggest a command line program
* [`bee04d31`](https://github.com/NixOS/nixpkgs/commit/bee04d31577f4878e2d3824e354d1bf3bf300309) prisma-engines: 4.10.1 -> 4.11.0
* [`d5d8baa6`](https://github.com/NixOS/nixpkgs/commit/d5d8baa676aac635110fd9668738ef441c65d98a) nodePackages.prisma: 4.10.1 -> 4.11.0
* [`014eba88`](https://github.com/NixOS/nixpkgs/commit/014eba883e7d81771c9c8cb938618e5a3f35208d) buildDotnetModule: point fetch-deps at module's deps file by default
* [`929143c1`](https://github.com/NixOS/nixpkgs/commit/929143c14558140944c3beb392fbb084d8f9bd93) opensearch: 2.5.0 -> 2.6.0
* [`5cfd70fd`](https://github.com/NixOS/nixpkgs/commit/5cfd70fd4d6afabb89434c7a2ff0d116b030bbf9) opensearch: fix knn ml plugin
* [`3330e67e`](https://github.com/NixOS/nixpkgs/commit/3330e67e9718579df2d8e5ed933ec1e54651a3a9) python310Packages.dtlssocket: 0.1.12 -> 0.1.14
* [`39bb5f56`](https://github.com/NixOS/nixpkgs/commit/39bb5f56a10cdb4b222751c64e9ed583ae7e467b) zola: 0.16.1 -> 0.17.0
* [`2eb86f59`](https://github.com/NixOS/nixpkgs/commit/2eb86f590dd5590ce59e2be1456360e39d073a7b) zola: fix completions
* [`40575604`](https://github.com/NixOS/nixpkgs/commit/40575604eaaa1de4b90330bcd4c5dbf71a3d84dd) zola: 0.17.0 -> 0.17.1
* [`fe6b447c`](https://github.com/NixOS/nixpkgs/commit/fe6b447c430b23f508af608aff740e0c644297d7) ocamlPackages.elina: fixup build by using older make
* [`03bd6304`](https://github.com/NixOS/nixpkgs/commit/03bd63043fe664316f479fc0a548e903432fbb0f) deepin.dtkgui: don't propagate librsvg and freeimage
* [`118bdf25`](https://github.com/NixOS/nixpkgs/commit/118bdf25a6c572dd2fd29d10b1ae2e4d9a95b907) lib/modules: Allow an "anonymous" module with key in disabledModules
* [`00e61446`](https://github.com/NixOS/nixpkgs/commit/00e614468d4828bafeb2942b9a9055d9a1bbb0fd) evcc: 0.113.0 -> 0.114.0
* [`735b57d9`](https://github.com/NixOS/nixpkgs/commit/735b57d962bf61f5457f48e8d8e16da56ff1d88a) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`ea0e64eb`](https://github.com/NixOS/nixpkgs/commit/ea0e64eb3fdf0f0ad477393060b7cc6f171ce86f) libvirt: 9.0.0 -> 9.1.0
* [`e7071b16`](https://github.com/NixOS/nixpkgs/commit/e7071b166934180cb2d9808568859b8595983423) stellar-core: 19.7.0 -> 19.8.0
* [`fae39600`](https://github.com/NixOS/nixpkgs/commit/fae39600ef84afac3c8570656198e7f9e0a3c30f) fossil: 2.20 -> 2.21
* [`d23e7b1b`](https://github.com/NixOS/nixpkgs/commit/d23e7b1be4e9c3a3135ca07045fb809278b5bf9d) ocamlPackages.elina: more precise meta.platforms
* [`688c4961`](https://github.com/NixOS/nixpkgs/commit/688c4961cf969df7a1ecc05dfd4f1932fda192dc) gnuplot: 5.4.5 -> 5.4.6
* [`ca44f048`](https://github.com/NixOS/nixpkgs/commit/ca44f0485c6135d1a1be5f9a3ac7ab1b18c24752) python310Packages.questionary: increase open files for testing
* [`c3c40d56`](https://github.com/NixOS/nixpkgs/commit/c3c40d562c254c260b959f513424db6fba3cb7e9) uhd: 4.1.0.5 -> 4.4.0.0
* [`22ee3640`](https://github.com/NixOS/nixpkgs/commit/22ee36406c6aebb2a4df228a932e48944e9eca72) volk: 2.5.0 -> 3.0.0
* [`35157ceb`](https://github.com/NixOS/nixpkgs/commit/35157ceba3d60f3338cdc6b4f0846444e037282d) pritunl-client: 1.3.3430.77 -> 1.3.3457.61
* [`5917a053`](https://github.com/NixOS/nixpkgs/commit/5917a053a75affb24979b3962411e704d15bf9c3) regreet: init at unstable-2023-02-27
* [`1a129dc6`](https://github.com/NixOS/nixpkgs/commit/1a129dc63f21026d029d43c5ff8cf5d77ef3238a) zfsUnstable: 2.1.10-unstable-2023-01-24 → 2.1.10-unstable-2023-03-02
* [`1bf8d63f`](https://github.com/NixOS/nixpkgs/commit/1bf8d63f8fe9b48225ed58a561b991bc4ba00398) openai-full: create variant that includes optional deps
* [`1023ebd4`](https://github.com/NixOS/nixpkgs/commit/1023ebd4a0c06d5dc3eaeb92f98412b444eb94f5) obsidian: 1.1.15 -> 1.1.16
* [`a48211c3`](https://github.com/NixOS/nixpkgs/commit/a48211c319dc9520dbabfd20bd2001f991fd898e) microsoft-edge: fix file picker and `subsituteInPlace`
* [`2c126112`](https://github.com/NixOS/nixpkgs/commit/2c1261127770f1886e49903742e4e989fdae6ad2) phoc: 0.21.1 -> 0.25.0
* [`2455dfab`](https://github.com/NixOS/nixpkgs/commit/2455dfab0da8bb2158d9c404ec13ccf42250ed3e) phosh: 0.23.0 -> 0.25.1
* [`a10d6761`](https://github.com/NixOS/nixpkgs/commit/a10d67619900daa500e010a3c68c1e7799c32eb8) llvm: tighten platforms
* [`7705b76c`](https://github.com/NixOS/nixpkgs/commit/7705b76cc1936920bccdedc0405b8a7dab641c08) xpra: 4.3.3 -> 4.4.3
* [`b7b7c43d`](https://github.com/NixOS/nixpkgs/commit/b7b7c43d5a9575201173cdf38659e4afc23cdaac) gnomeExtensions: auto-update
* [`94bbbb04`](https://github.com/NixOS/nixpkgs/commit/94bbbb047180b59ef6f25f4d89e7a12b5fc6db63) cudaPackages: point nvcc at a compatible -ccbin
* [`cf7fb1d0`](https://github.com/NixOS/nixpkgs/commit/cf7fb1d08f928f48725f15e595cbb84793278379) python3Packages.tensorflow: add cudaCapabilities argument
* [`79397957`](https://github.com/NixOS/nixpkgs/commit/79397957e876ef7fe6eccbcb58d23fb5c58f121c) cudaPackages.nccl: respect cudaCapabilities
* [`e3050112`](https://github.com/NixOS/nixpkgs/commit/e305011223c940a8dd661f64eb5cd5384c15ddbe) cudaPackages_12.nccl: fix new missing inputs
* [`d378cc6f`](https://github.com/NixOS/nixpkgs/commit/d378cc6fb23d67f3d9f86c39051f810c563789ca) opencv4: respect config.cudaCapabilities
* [`5f4bdbe6`](https://github.com/NixOS/nixpkgs/commit/5f4bdbe6c387bf740025581d94bbfba9a887c76f) python3Packages.tensorflow: fix `GLIBCXX_3.4.30' not found
* [`17248123`](https://github.com/NixOS/nixpkgs/commit/17248123b6ae01b89a25de730ea890276acd69b2) cudaPackages_12: use gcc12
* [`2b69d618`](https://github.com/NixOS/nixpkgs/commit/2b69d618c28bdcbc822843a534c2cb74542ec972) opencv3: respect config.cudaCapabilities
* [`c376c54f`](https://github.com/NixOS/nixpkgs/commit/c376c54f70b91c68f6f2ddc90838b57a82b12ecd) cudaPackages.cudatoolkit: refactor inheriting passthru.cc
* [`8bf5f5ac`](https://github.com/NixOS/nixpkgs/commit/8bf5f5ac893ff07406a3a1979d944c2a86cfc887) magma: use CMAKE_CUDA_ARCHITECTURES directly
* [`2100c492`](https://github.com/NixOS/nixpkgs/commit/2100c4926200b1ebbee032ad22113597195932f2) endless-sky:0.9.14 -> 0.9.16.1
* [`0ff1b6ed`](https://github.com/NixOS/nixpkgs/commit/0ff1b6ed70d13907a8d3d552fd90ac77d1b96bea) esptool: 4.5 -> 4.5.1
* [`fa8ecdce`](https://github.com/NixOS/nixpkgs/commit/fa8ecdced8888122a4ec14c8e652d350b2c97fd1) monocraft: 1.4 -> 2.4
* [`dd2b2769`](https://github.com/NixOS/nixpkgs/commit/dd2b27692e8a32316d263b938bddfa515eb2775a) magma: explain `cudaSupport ? true`
* [`0c25f5aa`](https://github.com/NixOS/nixpkgs/commit/0c25f5aa7ffb4ed9d4015fc273f51d08ff2a279b) cudaPackages.cudatoolkit: remove unused gcc argument
* [`ac64f07f`](https://github.com/NixOS/nixpkgs/commit/ac64f07f9c8b9bcc4a4b6d285146cd50473d6b5d) cudaPackages.cudaFlags: drop unused capabilitiesAndForward
* [`68648fa4`](https://github.com/NixOS/nixpkgs/commit/68648fa4c01e5b9f9b91cf0235652bbaec154926) darwin.apple_sdk_11_0.clang{12-15}Stdenv: init
* [`7a734f27`](https://github.com/NixOS/nixpkgs/commit/7a734f279523d08b5eec75a8a60d24438dbbe5cc) darwin.apple_sdk_11_0: code cleanup
* [`b7391c69`](https://github.com/NixOS/nixpkgs/commit/b7391c695b8c29e046445cc1953c7380ae36eb66) signalbackup-tools: unbreak on Darwin systems
* [`b373d299`](https://github.com/NixOS/nixpkgs/commit/b373d299bae89922f2bde5f351b90495b182daf2) docs/rust: improve docs for nightly usage
* [`fcc10ee9`](https://github.com/NixOS/nixpkgs/commit/fcc10ee9a4891ea20194fa8178d55786439fd73a) cargo-binutils: don't recommend nixpkgs-mozilla
* [`35081a77`](https://github.com/NixOS/nixpkgs/commit/35081a77d56c84bea79bc810a825179357d68658) cargo-llvm-cov: don't recommend nixpkgs-mozilla
* [`4f2d703d`](https://github.com/NixOS/nixpkgs/commit/4f2d703d91e958e79bd38254e5c8e09edcd5d583) ssm-session-manager-plugin: Build from source
* [`9c00800a`](https://github.com/NixOS/nixpkgs/commit/9c00800a68f2961e464240902407bcb27f53fa72) ssm-session-manager-plugin: 1.2.331.0 -> 1.2.398.0
* [`2c02d0ba`](https://github.com/NixOS/nixpkgs/commit/2c02d0ba11687d5ecca95ac33b1e9227f920ac3c) mongosh: 1.6.2 -> 1.8.0, use buildNpmPackage
* [`2a2831c9`](https://github.com/NixOS/nixpkgs/commit/2a2831c9e9f3b7f2d62373a3700a2c9c0862ea3d) ko: add developer-guy to maintainers list
* [`c777db77`](https://github.com/NixOS/nixpkgs/commit/c777db77a3e0aab5f406142fadc7ad43838b8d73) element-{web,desktop}: 1.11.23 -> 1.11.24
* [`6428223c`](https://github.com/NixOS/nixpkgs/commit/6428223c0ec203dc80716f100f89985bc4caafb2) cgreen: take maintenance
* [`abedfdd3`](https://github.com/NixOS/nixpkgs/commit/abedfdd3da6c1a301f23556f06936490e69c070a) maintainers: remove nichtsfrei
* [`fa06318a`](https://github.com/NixOS/nixpkgs/commit/fa06318a46c6110eb5395ffcb0270fca38da09f1) ndn-cxx: unpin openssl_1_1
* [`7e13b629`](https://github.com/NixOS/nixpkgs/commit/7e13b629c733ed7510c8d5fe3c77dce1316c1460) ndn-tools: unpin openssl_1_1
* [`a75ef43a`](https://github.com/NixOS/nixpkgs/commit/a75ef43adfb56aeefa78bfe29a4acb5154446efd) wireshark: format
* [`f1911fd8`](https://github.com/NixOS/nixpkgs/commit/f1911fd866d2ed05051c3b5cc20b459491f56d29) tutanota-desktop: 3.108.12 -> 3.110.0
* [`dede4a1d`](https://github.com/NixOS/nixpkgs/commit/dede4a1dadd5613f0f438180ef5a14c2a3e41887) pe-bear: 0.6.1 -> 0.6.5
* [`1616a0aa`](https://github.com/NixOS/nixpkgs/commit/1616a0aa4d4ffe8aa77fa90f9148960954b9c1f5) bazarr: 1.1.4 -> 1.2.0
* [`ddac6e04`](https://github.com/NixOS/nixpkgs/commit/ddac6e045f121a12541d9faf3842a5868b204358) wireshark: 4.0.3 -> 4.0.4
* [`55a25b0a`](https://github.com/NixOS/nixpkgs/commit/55a25b0acaa26956ac3e335711a603008ca6ab1a) wireshark: add more dependencies
* [`48eab73b`](https://github.com/NixOS/nixpkgs/commit/48eab73bb6145dc3e78325fc1bda679ba5c8645a) python310Packages.eradicate: update meta
* [`57e21e88`](https://github.com/NixOS/nixpkgs/commit/57e21e88b204c55eac1569807dd974741beffb5f) python310Packages.eradicate: disable on unsupported Python releases
* [`e1806091`](https://github.com/NixOS/nixpkgs/commit/e1806091d7374613c403414ae0debb58e6a7c814) python310Packages.eradicate: 2.1.0 -> 2.2.0
* [`353859c8`](https://github.com/NixOS/nixpkgs/commit/353859c8fb494a5c99ba61266605181347f0eb0a) python310Packages.bpycv: 0.2.43 -> 0.3.6
* [`71435991`](https://github.com/NixOS/nixpkgs/commit/71435991394209dc843eb6f99414ea8a75be491c) wpsoffice: 11.1.0.11664 -> 11.1.0.11691
* [`5248f534`](https://github.com/NixOS/nixpkgs/commit/5248f53462ad2004fa6d2128521844cc41d0b83e) vassal: 3.6.12 -> 3.6.13
* [`a3f3ede0`](https://github.com/NixOS/nixpkgs/commit/a3f3ede0cfd0a31d65637296cac21b7e28506e5d) ocamlPackages.ocaml-freestanding: mark as broken
* [`50e35e9b`](https://github.com/NixOS/nixpkgs/commit/50e35e9b6c8fbd2e84bf569bfb3c7dd9ab6a6329) obliv-c: migrate to OCaml 4.14
* [`cc4169d7`](https://github.com/NixOS/nixpkgs/commit/cc4169d737e092ef877cf8b8d9b940df849a7312) glsurf: migrate to OCaml 4.14
* [`3796e591`](https://github.com/NixOS/nixpkgs/commit/3796e5913698883eb2ef6d6cc6c797fd302a4bc4) vampire: unbreak on aarch64-linux
* [`f88ef28d`](https://github.com/NixOS/nixpkgs/commit/f88ef28dc9e8c732b9338571cd5b1bbd084ff268) maintainers: add apfelkuchen6
* [`d73f7fc6`](https://github.com/NixOS/nixpkgs/commit/d73f7fc6156c804dd325a5d2327a20bcfebb8caf) python3Packagages.python-musicpd: init at 0.8.0
* [`28eb4d04`](https://github.com/NixOS/nixpkgs/commit/28eb4d0456ac8aff043c499ec49a598f3f71206b) mpd-sima: init at 0.18.2
* [`919dd089`](https://github.com/NixOS/nixpkgs/commit/919dd0892c74a6cbca47000182909766d8380385) signalbackup-tools: 20230223-1 -> 20230304-3
* [`953d54f6`](https://github.com/NixOS/nixpkgs/commit/953d54f69117f4c79269e11f69ebafee5507d972) rust-analyzer: use nix-update-script
* [`4140f453`](https://github.com/NixOS/nixpkgs/commit/4140f453e932ccc92bef8fea370d6f88b6d09973) praat: 6.3.08 -> 6.3.09
* [`e10f9f1f`](https://github.com/NixOS/nixpkgs/commit/e10f9f1fbfb20acbf9b1643c7ec39e6d28bc2174) polkadot: 0.9.38 -> 0.9.39
* [`d008d899`](https://github.com/NixOS/nixpkgs/commit/d008d899ce44f8ce6f20442db157c96b5e31b096) shotman: 0.4.0 -> 0.4.1
* [`58306ceb`](https://github.com/NixOS/nixpkgs/commit/58306ceb17c8daea391a6bb888fc68b75fff0718) morgen: 2.6.6 -> 2.6.7
* [`72024b15`](https://github.com/NixOS/nixpkgs/commit/72024b159a71b057534ad2472f0c99f85407d4b5) tvm: 0.10.0 -> 0.11.0
* [`5424180b`](https://github.com/NixOS/nixpkgs/commit/5424180bc5d13d2b3707e572f5d410d67a02d582) nats-server: 2.9.14 -> 2.9.15
* [`46cdbdaa`](https://github.com/NixOS/nixpkgs/commit/46cdbdaa318325b42bbfb05e4a6db3d10b195864) linkerd_edge: 23.2.3 -> 23.3.1
* [`6ba0151a`](https://github.com/NixOS/nixpkgs/commit/6ba0151a846af3938196f830f7c128678a7ff89c) terragrunt: 0.44.0 -> 0.44.4
* [`a56529a9`](https://github.com/NixOS/nixpkgs/commit/a56529a95f30709bb7cc4d956d1a08961cf588d1) glsurf: fix runtime error
* [`7aa0bc3c`](https://github.com/NixOS/nixpkgs/commit/7aa0bc3c377d753c0964542eccd997aabaaf78a3) feedbackd: 0.0.3 -> 0.1.0
* [`3e45de22`](https://github.com/NixOS/nixpkgs/commit/3e45de22cda188da91528d8294047e73d0f8776f) acorn: 0.5.1 -> 0.6.0
* [`af81d879`](https://github.com/NixOS/nixpkgs/commit/af81d8794ec7f897accae7e07460b70b52cbd11e) unison: M4c -> M4h
* [`0f1483d1`](https://github.com/NixOS/nixpkgs/commit/0f1483d1a261a1f7f9a3ac109a16cdff68312db4) python310Packages.lineedit: init at 0.1.6
* [`b92e5657`](https://github.com/NixOS/nixpkgs/commit/b92e565723097a3425a0e2c7b47f30041085f940) python310Packages.s3fs: 2023.1.0 -> 2023.3.0
* [`d6a97b41`](https://github.com/NixOS/nixpkgs/commit/d6a97b41824b41af29ad19a11dea9b34270d7586) python310Packages.apispec: 6.0.2 -> 6.1.0
* [`f1e518e0`](https://github.com/NixOS/nixpkgs/commit/f1e518e06f4ac43238d376787c278d088758c986) bolt: 0.9.2 -> 0.9.5
* [`ca9f0682`](https://github.com/NixOS/nixpkgs/commit/ca9f0682fdbaf70454be9c1dd51250a0065233bd) nixos/systemd-boot: always use profile_path() for system closure paths
* [`73f2d007`](https://github.com/NixOS/nixpkgs/commit/73f2d0074aa039a40fd11ffcce6495568528c56e) python310Packages.rchitect: init at 0.3.40
* [`e730867d`](https://github.com/NixOS/nixpkgs/commit/e730867dc051f9f9f6bd0b641838a24b74cad4c8) python310Packages.radian: init at 0.6.4 and provide radianWrapper
* [`b2acf6bc`](https://github.com/NixOS/nixpkgs/commit/b2acf6bcd1d6b1615b40b3c8c01538d332eaf36a) thermald: 2.5.1 -> 2.5.2
* [`eadfa088`](https://github.com/NixOS/nixpkgs/commit/eadfa0886a1ab1e18aad53ba0103456abe7b0f3c) python310Packages.aiodiscover: 1.4.13 -> 1.4.14
* [`0e09eee2`](https://github.com/NixOS/nixpkgs/commit/0e09eee2c066791be7f17f53d1fc01457e4953ea) hikari: 2.3.2 -> 2.3.3
* [`da590309`](https://github.com/NixOS/nixpkgs/commit/da59030939a95114cf38cd589da4a7f5f7ca8b74) python310Packages.aiodiscover: add changelog to meta
* [`32907346`](https://github.com/NixOS/nixpkgs/commit/3290734615c91f490550d8336e4cf14d897b2027) pkgsStatic.iproute2: fix build (disable shared libraries)
* [`44172b3c`](https://github.com/NixOS/nixpkgs/commit/44172b3c66ded6942aea293c09d5437117956f3b) udict: init at 0.1.2
* [`8caf109c`](https://github.com/NixOS/nixpkgs/commit/8caf109c28ba10ab9ea71bd57a18c06451c9a8f3) carapace: 0.21.0 -> 0.22.0
* [`78c57b6c`](https://github.com/NixOS/nixpkgs/commit/78c57b6c1cd31b0a0a8e1e527893e150e26bb48b) neil: 0.1.47 -> 0.1.55
* [`38ba8261`](https://github.com/NixOS/nixpkgs/commit/38ba8261dd85015f007c7534a6a6074df11b1484) simdjson: 3.1.2 -> 3.1.3
* [`04082197`](https://github.com/NixOS/nixpkgs/commit/040821978dc5c2f26ce5c322b37b1ec363f0720d) squid: 5.7 -> 5.8
* [`9a23d3c8`](https://github.com/NixOS/nixpkgs/commit/9a23d3c8cd0387379380b3f082e46f7e4bf71ea4) pcloud: 1.10.1 -> 1.11.0
* [`c299df8d`](https://github.com/NixOS/nixpkgs/commit/c299df8dec7cff18d1d696047339d4ebb286aea6) openseachest: 22.07 -> 23.03
* [`3c4b76f4`](https://github.com/NixOS/nixpkgs/commit/3c4b76f46e2a7301b516df31d6024782eba9ba07) katawa-shoujo: init at 1.3.1
* [`877d7078`](https://github.com/NixOS/nixpkgs/commit/877d70784585dee16fa6a758b5d719aaf607fc0f) oven-media-engine: 0.15.0 -> 0.15.1
* [`35388553`](https://github.com/NixOS/nixpkgs/commit/353885536c7c82e119e486e3bcc7ff6fecaca2a4) drawterm: unstable-2021-10-02 -> unstable-2023-03-05
* [`a18b27a3`](https://github.com/NixOS/nixpkgs/commit/a18b27a3f62c72da3c5a1ba6b75c6a188e9b0376) libdeltachat: 1.110.0 -> 1.111.0
* [`783dd8d4`](https://github.com/NixOS/nixpkgs/commit/783dd8d4fe4702b6d1cc0e5d539337eab29237d3) awscli2: 2.10.4 -> 2.11.0
* [`1360d4cc`](https://github.com/NixOS/nixpkgs/commit/1360d4cc5133bf700044e6d343169d289143a183) zig: build offline documentation
* [`786bf693`](https://github.com/NixOS/nixpkgs/commit/786bf693bae56d7ee705e809c4ab2d4244cdca36) argocd: 2.6.2 -> 2.6.3
* [`5050b9c4`](https://github.com/NixOS/nixpkgs/commit/5050b9c48fd2fc920963c607831dba2047bd81fd) holochain-launcher: 0.9.0 -> 0.9.1
* [`3d173e96`](https://github.com/NixOS/nixpkgs/commit/3d173e9635eb413cf1cf4744b02de6551e342718) xborders: init at 3.4
* [`0f2d8460`](https://github.com/NixOS/nixpkgs/commit/0f2d84601c1f93fa311940fdde6adb8854e244e1) komga: 0.161.0 -> 0.162.0
* [`c0a41e92`](https://github.com/NixOS/nixpkgs/commit/c0a41e924b33d6e05b807f2f7816814d91b028d8) blaze: 3.8.1 -> 3.8.2
* [`8e3984de`](https://github.com/NixOS/nixpkgs/commit/8e3984de4c7334e0d6077e834b7e0212c7e9d585) avalanchego: 1.9.9 -> 1.9.10
* [`2b814394`](https://github.com/NixOS/nixpkgs/commit/2b814394c8846365598348f00c5b93cfa911b5ad) rpi-imager: 1.7.3 -> 1.7.4
* [`2bd6fc16`](https://github.com/NixOS/nixpkgs/commit/2bd6fc164cf473bd1d3b03a725169c8369fc217b) ntfy-sh: 2.1.1 -> 2.1.2
* [`1ae55a93`](https://github.com/NixOS/nixpkgs/commit/1ae55a93f8a23610fb1b729458567198eb03b49f) coreth: 0.11.7 -> 0.11.8
* [`1e45fc39`](https://github.com/NixOS/nixpkgs/commit/1e45fc393bf819cf2f211c9ea237283246465d97) chromiumDev: 112.0.5596.2 -> 112.0.5615.12
* [`33c3687d`](https://github.com/NixOS/nixpkgs/commit/33c3687d221b4be03e9a891636d8c25401c3317b) vscodium: 1.75.0.23033 -> 1.76.0.23062
* [`1c696382`](https://github.com/NixOS/nixpkgs/commit/1c696382ae5e3eb31f689c55ffd15ff1087f1315) autorestic: 1.7.5 -> 1.7.6
* [`fbaaa34c`](https://github.com/NixOS/nixpkgs/commit/fbaaa34c7a1b3f4d7923a987ab3946326e225227) fetchmail: 6.4.36 -> 6.4.37
* [`fddd8787`](https://github.com/NixOS/nixpkgs/commit/fddd8787d374141fbbb45ed68debba11483450b7) openfortivpn: 1.19.0 -> 1.20.1
* [`43750863`](https://github.com/NixOS/nixpkgs/commit/437508639df090459b1a9f1871ab7966913687b7) cemu: 2.0-26 -> 2.0-28
* [`50f8a89d`](https://github.com/NixOS/nixpkgs/commit/50f8a89d699d9e3e2ec2fa8491436b396f0c834e) exfat: 1.3.0 -> 1.4.0
* [`5dda1cbe`](https://github.com/NixOS/nixpkgs/commit/5dda1cbe9549cdf25c4ac70df5d7b230a613fbc3) grapejuice: 7.2.1 -> 7.8.3
* [`cda984b5`](https://github.com/NixOS/nixpkgs/commit/cda984b5ec21de133374025cffe9cbf548d839bd) kics: 1.6.10 -> 1.6.11
* [`6f10ea96`](https://github.com/NixOS/nixpkgs/commit/6f10ea96ec9149ef88cf0bd689efbca6e812c314) deltachat-desktop: remove old patch
* [`5e5d6e16`](https://github.com/NixOS/nixpkgs/commit/5e5d6e16ed90c73684b8426c7ca2567c7f1538fd) python310Packages.deltachat: inherit meta from libdeltachat
* [`823e822a`](https://github.com/NixOS/nixpkgs/commit/823e822aeec15abad61d2b56ee2bf8130a9e34d4) mdbook: 0.4.26 -> 0.4.28
* [`1fc18708`](https://github.com/NixOS/nixpkgs/commit/1fc187089b742fb79f07d88ede3b9939281ce3ba) ares-rs: init at 0.9.0
* [`1a79103b`](https://github.com/NixOS/nixpkgs/commit/1a79103b2b4fc48e07347f188ec2d68023c635ac) rauc: 1.8 -> 1.9
* [`a7cfc9af`](https://github.com/NixOS/nixpkgs/commit/a7cfc9afdf51ebcb571f463847c0ac8cae2cd0e2) python310Packages.ospd: add changelog to meta
* [`23dec20d`](https://github.com/NixOS/nixpkgs/commit/23dec20de6262748af0492e26cdbe86a8dcf7840) ospd-openvas: init at 22.4.6
* [`521fb3f6`](https://github.com/NixOS/nixpkgs/commit/521fb3f6a67fb10722fe5e6abe036c54f2eb6137) gvm-libs: add changelog to meta
* [`a97d17a4`](https://github.com/NixOS/nixpkgs/commit/a97d17a444c2fb22839418c564d7502a9ba6de91) gvm-libs: 21.4.4 -> 22.4.4
* [`ede665f2`](https://github.com/NixOS/nixpkgs/commit/ede665f2ef01f54831624a413030f7b6cb0ba661) miopengemm: 5.4.2 -> 5.4.3
* [`d4b88e4d`](https://github.com/NixOS/nixpkgs/commit/d4b88e4d15100cbd70bfaabe0a8b9f97e694d25c) python310Packages.kaggle: 1.5.12 -> 1.5.13
* [`b9c88ad0`](https://github.com/NixOS/nixpkgs/commit/b9c88ad0a09144667147b19c29f4187052820690) python310Packages.google-cloud-error-reporting: 1.8.2 -> 1.9.0
* [`626cc1f3`](https://github.com/NixOS/nixpkgs/commit/626cc1f3e645d8b3815d27c4bef8210c651aa680) firefox-beta-bin-unwrapped: 111.0b6 -> 111.0b8
* [`1d79811a`](https://github.com/NixOS/nixpkgs/commit/1d79811a4211ad6f1b9f9f2b4279145ec531f92c) wine: fix build failure on Darwin
* [`be7a05a7`](https://github.com/NixOS/nixpkgs/commit/be7a05a70f46bdbb072c25535fb576198b409651) brev-cli: 0.6.207 -> 0.6.208
* [`8fdababc`](https://github.com/NixOS/nixpkgs/commit/8fdababce4969d18f9d86664fa5dc292dd16a883) android-udev-rules: 20230104 -> 20230303
* [`c9babe3f`](https://github.com/NixOS/nixpkgs/commit/c9babe3fc1a435e2f36e3b8f0af89ff489757f7f) xd: 0.4.2 -> 0.4.4
* [`f8ae1e7f`](https://github.com/NixOS/nixpkgs/commit/f8ae1e7fe9934d335ee7886f1f8e583213c47fbe) lxgw-neoxihei: 1.006 -> 1.007
* [`9780b8e2`](https://github.com/NixOS/nixpkgs/commit/9780b8e2673dfd01279e4147f410887b93f3e032) ginkgo: fix darwin build
* [`d6d742cf`](https://github.com/NixOS/nixpkgs/commit/d6d742cf89e417cef066a30284a1e94ac44aeb9d) rnote: 0.5.14 -> 0.5.16
* [`5765d33f`](https://github.com/NixOS/nixpkgs/commit/5765d33f3540e12d7864dc3a155b8332a8dc0ec4) binutils: fix MinGW link failures with import libs
* [`8c7e78ad`](https://github.com/NixOS/nixpkgs/commit/8c7e78ad9d29610e57c394d06aa4e8dda1914ea0) jfrog-cli: 2.34.2 -> 2.34.6
* [`22cea184`](https://github.com/NixOS/nixpkgs/commit/22cea1844af6a6b88d97c8997c67fb6bf6be619e) litecoin: 0.21.2.1 -> 0.21.2.2
* [`782f4c77`](https://github.com/NixOS/nixpkgs/commit/782f4c779a1aec781fe2747f809964f9b6c0895f) cloud-hypervisor: 29.0 -> 30.0
* [`684306b2`](https://github.com/NixOS/nixpkgs/commit/684306b246d05168e42425a3610df7e2c4d51fcd) ocamlPackages.sedlex: 3.0 -> 3.1
* [`cb1e91e6`](https://github.com/NixOS/nixpkgs/commit/cb1e91e66189bf780930058a668a95097f3d2daf) python310Packages.iminuit: 2.20.0 -> 2.21.0
* [`1d503d2c`](https://github.com/NixOS/nixpkgs/commit/1d503d2c17eb26ddee3d915047388600ece49ae6) mkgmap: 4905 -> 4906
* [`915bc5fb`](https://github.com/NixOS/nixpkgs/commit/915bc5fb1de4f6e1798586d0f7f9e470f2647aee) podman-tui: 0.7.0 -> 0.9.0
* [`c52aa746`](https://github.com/NixOS/nixpkgs/commit/c52aa746e12733647ea47d9d2a1dd35fa02d8670) vscode-extensions.streetsidesoftware.code-spell-checker: 2.18.0 -> 2.19.0
* [`cd20e3b8`](https://github.com/NixOS/nixpkgs/commit/cd20e3b85e7fd8c5a3f303634022d7f794ac292b) colima: patch `sw_vers` on darwin
* [`c5d748d6`](https://github.com/NixOS/nixpkgs/commit/c5d748d650139e4b86248ab80c0e490d13561191) bgpq4: 1.8 -> 1.9
* [`6ea505ee`](https://github.com/NixOS/nixpkgs/commit/6ea505ee4ea6a148132f7b4fd93f8d36aa1b25b0) mesa: enable vulkan intel drivers on 32bit
* [`d23c04cd`](https://github.com/NixOS/nixpkgs/commit/d23c04cdbd5460ae548803bb10fd04b9da4037a0) colima: build and test all packages
* [`cb363523`](https://github.com/NixOS/nixpkgs/commit/cb363523dad54f575dae55d245d73018712a6f7f) gitlab: 15.8.3 -> 15.8.4 ([nixos/nixpkgs⁠#219406](https://github.com/nixos/nixpkgs/issues/219406))
* [`68553d6e`](https://github.com/NixOS/nixpkgs/commit/68553d6e23935cb1b2ec4192208e3c8bb2b95fc3) duckdb: 0.7.0 -> 0.7.1
* [`e6c8a2f3`](https://github.com/NixOS/nixpkgs/commit/e6c8a2f3e340cbf7dbecfd5c66baf716b212a139) linuxPackages_latest.jool: fix build ([nixos/nixpkgs⁠#219138](https://github.com/nixos/nixpkgs/issues/219138))
* [`358ca90b`](https://github.com/NixOS/nixpkgs/commit/358ca90b5f2e1e9a7263e8b4690d131d214c504b) luaPackages: adding several neovim plugins
* [`332073ba`](https://github.com/NixOS/nixpkgs/commit/332073ba4277f8643362ccfc6f20b0050549a4b9) colima: add darwin tools to native build inputs
* [`bf864baa`](https://github.com/NixOS/nixpkgs/commit/bf864baaa28514dbd4714fcfeb5714e7f3af4343) python310Packages.django-ipware: 4.0.2 -> 5.0.0
* [`b5f0fdc3`](https://github.com/NixOS/nixpkgs/commit/b5f0fdc371c33207144bf0b4b8de26c3fb613076) workflows/backport: Copy security label in backport PRs
* [`4caf0ce0`](https://github.com/NixOS/nixpkgs/commit/4caf0ce0e266f5a6ca9be701e307d2872d45dcfd) n8n: 0.215.1 -> 0.218.0
* [`31959695`](https://github.com/NixOS/nixpkgs/commit/3195969509c0569a6371a345738454e7c9191540) vimPlugins: update
* [`66fa5d30`](https://github.com/NixOS/nixpkgs/commit/66fa5d3036f1fafa9d58c379f34e881a8250e91b) vimPlugins.nvim-treesitter: update grammars
* [`7e4e8b9e`](https://github.com/NixOS/nixpkgs/commit/7e4e8b9e3cd28ab7b29c16a747ff16da47f2d52a) gitRepo: 2.31 -> 2.32
* [`15ada3ac`](https://github.com/NixOS/nixpkgs/commit/15ada3ac044e169d601929e493077dee17b8f65b) pantheon.elementary-files: 6.2.2 -> 6.3.0
* [`11d60255`](https://github.com/NixOS/nixpkgs/commit/11d602559bbf8eb3101957c04800eaa0aacfa974) python310Packages.tplink-omada-client: 1.1.0 -> 1.1.1
* [`14632246`](https://github.com/NixOS/nixpkgs/commit/146322465ff2996ad5143f13e10d6cd5ab23c52a) python310Packages.tplink-omada-client: add changelog to meta
* [`663f1739`](https://github.com/NixOS/nixpkgs/commit/663f17398c1820feaa192a523907ba294fe21319) python310Packages.screenlogicpy: 0.7.2 -> 0.8.0
* [`c15f803d`](https://github.com/NixOS/nixpkgs/commit/c15f803d8e729a0963d207f61826fb75ec1c8d02) python310Packages.scikit-survival: 0.19.0.post1 -> 0.20.0
* [`9e6c5da7`](https://github.com/NixOS/nixpkgs/commit/9e6c5da715c721429f308d1ae7de8665b53c86dc) python310Packages.caio: 0.9.11 -> 0.9.12
* [`62821edd`](https://github.com/NixOS/nixpkgs/commit/62821edd2e685be68ece5dd50af4b493a4fa9dba) This PR sets default SPARK_HOME and JAVA_HOME for R's sparklyr package using a patch in .onload. Preset value take precedence. SPARK_HOME points to python3Packages.pyspark rather than pkgs.spark because the former is actively maintained.
* [`ad920652`](https://github.com/NixOS/nixpkgs/commit/ad9206529272709d983822f7661bcc8b2ab343c8) element-{web,desktop}: hack to make ofborg maintainer pings work again
* [`41020c32`](https://github.com/NixOS/nixpkgs/commit/41020c3241acbdd15e0c3e9ad947826abc8638b6) bind: avoid tests on aarch64-linux for now
* [`b6cc2f29`](https://github.com/NixOS/nixpkgs/commit/b6cc2f2979a19ec2983cef156d5d44b2fe0e545f) element-desktop: electron_22 -> electron_23 ([nixos/nixpkgs⁠#219823](https://github.com/nixos/nixpkgs/issues/219823))
* [`2d1959e4`](https://github.com/NixOS/nixpkgs/commit/2d1959e4451ba8920d4cf2c38cbdd002fc51eb37) libqalculate, qalculate-gtk: 4.5.1 -> 4.6.0
* [`ba0b8cd1`](https://github.com/NixOS/nixpkgs/commit/ba0b8cd1051da6499a3fb4adffc25b5dda1f7149) python310Packages.exchangelib: 4.7.6 -> 4.9.0
* [`f8560b60`](https://github.com/NixOS/nixpkgs/commit/f8560b606d8bccadce7643de99bbbff3dba2fbae) python310Packages.google-cloud-iot: 2.8.1 -> 2.9.0
* [`45b97fbf`](https://github.com/NixOS/nixpkgs/commit/45b97fbf3c90dbc017c6a181bcbc8764f141084a) python310Packages.exchangelib: add changelog to meta
* [`97a25540`](https://github.com/NixOS/nixpkgs/commit/97a2554073bc9aca7faf0bdf39c2f392f55d1ca0) ponyc: fix build
* [`4056bd51`](https://github.com/NixOS/nixpkgs/commit/4056bd515fcf848a63c3e009c078f51f06b1cd07) mnemosyne: fix build on darwin
* [`fce04513`](https://github.com/NixOS/nixpkgs/commit/fce04513bdbd1befff2fb9d79606472ebc6818d5) python310Packages.yattag: 1.15.0 -> 1.15.1
* [`c37be28c`](https://github.com/NixOS/nixpkgs/commit/c37be28c5ce35a9ce27f282aad7b3ee5b00dd7af) python310Packages.yattag: update meta
* [`a22c1ad4`](https://github.com/NixOS/nixpkgs/commit/a22c1ad4658695d83a0c2511e86dc4703abf24e7) python310Packages.yattag: disable on unsupported Python releases
* [`2cb1fddb`](https://github.com/NixOS/nixpkgs/commit/2cb1fddb1741b6c9a7e194bc1c628cb930ba454f) python310Packages.yattag: add pythonImportsCheck
* [`37cb8972`](https://github.com/NixOS/nixpkgs/commit/37cb89729485c70a324076b465f10a019733d629) ddnet: 16.7.2 -> 16.8
* [`0385eec0`](https://github.com/NixOS/nixpkgs/commit/0385eec0567ba6b52c45fe4d7d66736ad84b44a9) rust-analyzer-unwrapped: 2023-02-27 -> 2023-03-06
* [`740395e1`](https://github.com/NixOS/nixpkgs/commit/740395e1d38f2b6201acc69c3de95a1805158425) cachix: 1.2 -> 1.3
* [`4b23fea8`](https://github.com/NixOS/nixpkgs/commit/4b23fea83c5fa2941d8fa8a59cfd04afa040db3d) pokefinder: Add `qtwayland` for Linux
* [`fcc9c904`](https://github.com/NixOS/nixpkgs/commit/fcc9c904caab87f83779eca73a21e226ab54f06f) xorg.xorgserver: fixup build on *-darwin
* [`8cbb9b0c`](https://github.com/NixOS/nixpkgs/commit/8cbb9b0caa0f682c4aa437f87ed5fac935f8b4fe) python310Packages.vertica-python: 1.3.0 -> 1.3.1
* [`a6ad4d51`](https://github.com/NixOS/nixpkgs/commit/a6ad4d5146fdb18c504102e45c842a667eb40d41) python310Packages.django-ipware: add changelog to meta
* [`2d91c09a`](https://github.com/NixOS/nixpkgs/commit/2d91c09a03dcde05ab350e8e7849f55dd3bc97a6) python310Packages.django-ipware: disable on unsupported Python releases
* [`1bf51415`](https://github.com/NixOS/nixpkgs/commit/1bf51415baa7bcbeca221a702441694e9a5b2b7b) ocamlPackages.camlimages_4_2_4: remove broken
* [`d934806f`](https://github.com/NixOS/nixpkgs/commit/d934806f6201e1749f98d47611dbf90d5fcdc0e7) omake: 0.10.5 → 0.10.6
* [`8ba93b07`](https://github.com/NixOS/nixpkgs/commit/8ba93b07f9cc5533070c9df076b727ee2178d071) python310Packages.aliyun-python-sdk-iot: 8.51.0 -> 8.52.0
* [`b5ee3bef`](https://github.com/NixOS/nixpkgs/commit/b5ee3bef18cd0f14268d04f7092f7c3b59538fad) spicy-parser-generator: 1.5.3 -> 1.7.0
* [`186e71a9`](https://github.com/NixOS/nixpkgs/commit/186e71a9aba60e6f0b5dc4193231ce6bc5c407a2) zeek: 5.1.2 -> 5.2.0
* [`eabc31b9`](https://github.com/NixOS/nixpkgs/commit/eabc31b9b927a8053434af87d25d69a665bc3ba4) hcl2json: 0.3.4 -> 0.5.0
* [`9687cb67`](https://github.com/NixOS/nixpkgs/commit/9687cb670bb87129e3ed4e3dcc90955b06bc1861) fselect: 0.8.1 -> 0.8.2
* [`5f60ed18`](https://github.com/NixOS/nixpkgs/commit/5f60ed186f842d4818de7a6615ad64dbc1c56294) kubelogin-oidc: 1.26.0 -> 1.27.0
* [`9e88cf2c`](https://github.com/NixOS/nixpkgs/commit/9e88cf2c9eec4a91ab6114cbf446930f65ed9e36) xorg.xf86videosuncg6: 1.1.2 -> 1.1.3
* [`46f6c447`](https://github.com/NixOS/nixpkgs/commit/46f6c447aa6ce45a68dd89864377a1a8d5d0362e) xorg.xf86videosunffb: 1.2.2 -> 1.2.3
* [`be4adf56`](https://github.com/NixOS/nixpkgs/commit/be4adf566821cc44298eb6c9eec0be51ec4f277d) xorg.xf86videosunleo: 1.2.2 -> 1.2.3
* [`7a550f8b`](https://github.com/NixOS/nixpkgs/commit/7a550f8b8d26a7036dd0e1d4215c95de4e8f01dd) xorg.xf86videotrident: 1.3.8 -> 1.4.0
* [`cfc997d8`](https://github.com/NixOS/nixpkgs/commit/cfc997d86de27d2df7c10a0130a956a5946ec639) xorg.xf86videoqxl: 0.1.5 -> 0.1.6
* [`24489274`](https://github.com/NixOS/nixpkgs/commit/2448927413e25f0f000d2f8ac4468436c6ee75aa) python310Packages.aioconsole: 0.6.0 -> 0.6.1
* [`3af39763`](https://github.com/NixOS/nixpkgs/commit/3af397636d07d949148e610c278060c7c0c8fb96) evcc: 0.114.0 -> 0.114.1
* [`a479ff1e`](https://github.com/NixOS/nixpkgs/commit/a479ff1ec5427acc7d4cb5cfd0dde8204ae14e21) sapling: 0.2.20230124-180750-hf8cd450a -> 0.2.20230228-144002-h9440b05e
* [`1eb6f7ea`](https://github.com/NixOS/nixpkgs/commit/1eb6f7eaabb3ea59195f151c6aee6acdee6ed804) trealla: only put valgrind in checkInputs if not darwin
* [`014968da`](https://github.com/NixOS/nixpkgs/commit/014968da10a43bf9c4547cfc7ee63be5c7476398) Update pkgs/development/interpreters/trealla/default.nix
* [`1511944c`](https://github.com/NixOS/nixpkgs/commit/1511944c6f4e5b2b86c751c8b8072beb8d69ac5b) treesheets: unstable-2023-02-25 -> unstable-2023-03-05
* [`a4384ecf`](https://github.com/NixOS/nixpkgs/commit/a4384ecfb23b72e8e37103df64aee9bcae0d53ef) llpp: 33 -> 41
* [`a6462d10`](https://github.com/NixOS/nixpkgs/commit/a6462d104a8d7004df933c892c9cf2d42c48ee97) iosevka-bin: 19.0.1 -> 20.0.0
* [`9ba06d5e`](https://github.com/NixOS/nixpkgs/commit/9ba06d5e2ff3eda353e2968cf2635873d8d6ed39) duden: init at 0.18.0
* [`14622349`](https://github.com/NixOS/nixpkgs/commit/14622349154c73938ac2b385be92518235e92a0d) hue-plus: init at 1.4.5
* [`67b2ca1b`](https://github.com/NixOS/nixpkgs/commit/67b2ca1b16f1c0d377cc3f71cf9022973cd5b13f) doppler: 3.55.0 -> 3.56.0
* [`6e060c01`](https://github.com/NixOS/nixpkgs/commit/6e060c01b8a5e85ccfc5dadaef9ffe5a1332f1ab) matrix-appservice-slack: 2.0.2 -> 2.1.0
* [`8119ccf4`](https://github.com/NixOS/nixpkgs/commit/8119ccf40044c1a8fc6a885e3f99c7bcf35ff021) conform: 0.1.0-alpha.26 -> 0.1.0-alpha.27
* [`9b985ffb`](https://github.com/NixOS/nixpkgs/commit/9b985ffb118dc36281b728570c1bc77ca4bd9ef4) weidu: patch against OCaml 4.14
* [`d61ab745`](https://github.com/NixOS/nixpkgs/commit/d61ab7452c9652b0b6051f1a2a9f7da38d67dceb) mldonkey: migrate to OCaml 4.14
* [`883997cb`](https://github.com/NixOS/nixpkgs/commit/883997cb3af6825772ab4d4d38e78109c241c53d) erdtree: 1.1.0 -> 1.2.0
* [`f255a7eb`](https://github.com/NixOS/nixpkgs/commit/f255a7ebc3924deb487a08ba881921859ac456fa) grpc-gateway: 2.15.1 -> 2.15.2
* [`a119b197`](https://github.com/NixOS/nixpkgs/commit/a119b197e068a518dc6f4d048b9166b520c94b6f) grafana-loki: 2.7.1 -> 2.7.4
* [`a233af68`](https://github.com/NixOS/nixpkgs/commit/a233af68773ab7dbf6157a612ae0eaed02abe98c) android-tools: 33.0.3p2 -> 34.0.0
* [`983d0143`](https://github.com/NixOS/nixpkgs/commit/983d0143d07d494d10cb7368d18852aa815fb3f5) autorestic: 1.7.6 -> 1.7.7
* [`319cc6ca`](https://github.com/NixOS/nixpkgs/commit/319cc6ca3534ee6956bae42be85d7518f278cd02) chromium{Beta,Dev}: Switch to LLVM 15
* [`ba9cceac`](https://github.com/NixOS/nixpkgs/commit/ba9cceac7a142bf30ce892fc417f3f3a835caf78) arkade: 0.9.2 -> 0.9.3
* [`6b52f888`](https://github.com/NixOS/nixpkgs/commit/6b52f88815a5a539e940fdb191c480aded2a400a) ocaml-ng.ocamlPackages_4_14_unsafe_string: init
* [`da3dacd0`](https://github.com/NixOS/nixpkgs/commit/da3dacd0e6c3a2002cf124e9c30f588859aaf1a5) treewide: use ocaml-ng.ocamlPackages_4_14_unsafe_string
* [`3d70562d`](https://github.com/NixOS/nixpkgs/commit/3d70562dfd2253df3c1ae1731af3f8dfba5b88b0) leo2: add darwin support
* [`28b5084f`](https://github.com/NixOS/nixpkgs/commit/28b5084f40662c15e4d2546dbaa5664876de9298) statverif: add darwin support
* [`0d8cfbd0`](https://github.com/NixOS/nixpkgs/commit/0d8cfbd06cd277453e48ec44458d41c57c210d24) monotoneViz: migrate to OCaml 4.14
* [`6185e429`](https://github.com/NixOS/nixpkgs/commit/6185e429a66b5360db976a604cece6cc731dbe36) wyrd: migrate to OCaml 4.14
* [`3966519d`](https://github.com/NixOS/nixpkgs/commit/3966519d12be2fb3fded3420f1cc82d681b17b5d) libreoffice: wrapper.nix rewrite
* [`bf98b333`](https://github.com/NixOS/nixpkgs/commit/bf98b333ee4ca6b0ea3140bb5fe5e14910863caa) torq: 0.18.17 -> 0.18.19
* [`22561466`](https://github.com/NixOS/nixpkgs/commit/22561466b0d5fb333d0a065f4b70553d69f56348) aws-c-io: 0.13.15 -> 0.13.18
* [`16818343`](https://github.com/NixOS/nixpkgs/commit/16818343f11972ed7f591080992ba146790cc2f1) maintainers: add apfelkuchen6
* [`481f02f7`](https://github.com/NixOS/nixpkgs/commit/481f02f7dd1b21ddfc363ec30b99fcfac04deaec) mpv: allow scripts to add wrapper args
* [`219a017c`](https://github.com/NixOS/nixpkgs/commit/219a017ce41a7b92746473f111b620850890c23b) dotnet-sdk_7: 7.0.102 -> 7.0.201
* [`e7c8662c`](https://github.com/NixOS/nixpkgs/commit/e7c8662c07e4caa2da07b8e58c7d779f29905b82) BeatSaberModManager: Update nuget dependencies
* [`72123b64`](https://github.com/NixOS/nixpkgs/commit/72123b64d423a4e7c511c91c1b82074cd40e8a4d) goreleaser: 1.15.2 -> 1.16.0
* [`1694afe2`](https://github.com/NixOS/nixpkgs/commit/1694afe2370f28a4c2cc393d3cf8fcbf58254af9) cpm-cmake: 0.38.0 -> 0.38.1
* [`26622690`](https://github.com/NixOS/nixpkgs/commit/266226903f343f867d1d217cab2b8e56f4fdefdc) python310Packages.doorbirdpy: 2.2.1 -> 2.2.2
* [`9ae79a46`](https://github.com/NixOS/nixpkgs/commit/9ae79a46f8b2497f0ea35da3ab3cb475c4283a5b) bacon: 2.6.1 -> 2.6.2
* [`a3dfcb57`](https://github.com/NixOS/nixpkgs/commit/a3dfcb57c2b727f3b307f370a27f1f6255ca7813) kbs2: 0.7.1 -> 0.7.2
* [`be1d82d5`](https://github.com/NixOS/nixpkgs/commit/be1d82d5ca6c3e80442d91b1a45af66776326495) python310Packages.openapi-schema-validator: 0.3.4 -> 0.4.3
* [`f1479a8e`](https://github.com/NixOS/nixpkgs/commit/f1479a8e9ff0c57a4d90b7ea1a86777be152330c) python310Packages.openapi-spec-validator: 0.5.1 -> 0.5.5
* [`9ca5356d`](https://github.com/NixOS/nixpkgs/commit/9ca5356d8d4475a12e9ad4d3d611fddbc02d4aa6) python310Packages.openapi-core: 0.16.6 -> 0.17.0
* [`6f7d6eba`](https://github.com/NixOS/nixpkgs/commit/6f7d6eba8f310a14f50050d6240497c5b041ad90) uacme: 1.7.3 -> 1.7.4
* [`68852fbe`](https://github.com/NixOS/nixpkgs/commit/68852fbe7c5714761fba83fe0c75afaf1902850a) oh-my-zsh: 2023-03-04 -> 2023-03-06
* [`2689297c`](https://github.com/NixOS/nixpkgs/commit/2689297c50e2041d7f1846580f6bd4d784cd45f9) rustpython: 2022-10-11 -> 0.2.0
* [`1846e296`](https://github.com/NixOS/nixpkgs/commit/1846e296de59daa169d9fd703445bbc5c942c885) mcfly: 0.7.1 -> 0.8.0
* [`851e7062`](https://github.com/NixOS/nixpkgs/commit/851e70627a9c4c22dd77bc182b5d1feda59ceea3) python310Packages.evtx: fix build on darwin
* [`bb5edc48`](https://github.com/NixOS/nixpkgs/commit/bb5edc482e691dbf9d0a28348684b2af611c6711) rustpython: fix build on aarch64-linux
* [`7e29e1b2`](https://github.com/NixOS/nixpkgs/commit/7e29e1b2c2cb2adb79783f2393553fbfd52175c5) postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1
* [`ea593627`](https://github.com/NixOS/nixpkgs/commit/ea593627b9df5925f6a9c78698daedbaf2536753) python310Packages.pydata-sphinx-theme: 0.13.0 -> 0.13.1
* [`f6546a76`](https://github.com/NixOS/nixpkgs/commit/f6546a76559371bd690c30e4c4db8f898704ac31) python310Packages.jupyter-book: 0.14.0 -> 0.15.0
* [`fc9ceeba`](https://github.com/NixOS/nixpkgs/commit/fc9ceeba82d0f5c0b4be97ee333e58c41b7ab67d) brakeman: 5.4.0 -> 5.4.1
* [`95ae3fc8`](https://github.com/NixOS/nixpkgs/commit/95ae3fc851b46a1507f139a6def751f51cde086a) signalbackup-tools: 20230304-3 -> 20230305
* [`64967029`](https://github.com/NixOS/nixpkgs/commit/649670296e729ac4a9c6667fcb172ae24a939ff2) opencv2: add darwin dependencies
* [`f5d33bf1`](https://github.com/NixOS/nixpkgs/commit/f5d33bf1f62627d1f8032bc309d9e069fd0b13d0) terraform-providers.checkly: 1.6.3 → 1.6.4
* [`60894658`](https://github.com/NixOS/nixpkgs/commit/608946580f5eebd38bc2124a4418ef1ba44c0c2e) terraform-providers.dnsimple: 0.16.1 → 0.16.2
* [`4a968ef9`](https://github.com/NixOS/nixpkgs/commit/4a968ef9be13181f672d0bd0f95a1d6ed72c00fd) terraform-providers.external: 2.2.3 → 2.3.1
* [`24b1c515`](https://github.com/NixOS/nixpkgs/commit/24b1c515d10ba833fe3ec9954cf88953d42c5bbb) terraform-providers.google: 4.55.0 → 4.56.0
* [`63e53c25`](https://github.com/NixOS/nixpkgs/commit/63e53c25af0717bb2d19d35fc1a0267098bbed10) terraform-providers.google-beta: 4.55.0 → 4.56.0
* [`e9a108bb`](https://github.com/NixOS/nixpkgs/commit/e9a108bb8cb71af191e094a307310db9bc550e8d) terraform-providers.keycloak: 4.1.0 → 4.2.0
* [`4aee971d`](https://github.com/NixOS/nixpkgs/commit/4aee971db19c5df4aa4e9cee7d24ec4ef90e0364) terraform-providers.aws: 4.57.0 → 4.57.1
* [`70073985`](https://github.com/NixOS/nixpkgs/commit/70073985ae856f777639a4742943f48b317d7799) nixos/gemstash: init module
* [`b5a69971`](https://github.com/NixOS/nixpkgs/commit/b5a6997194937e3428daee359d89db84c9f64f11) flyctl: 0.0.475 -> 0.0.476
* [`a7f90a36`](https://github.com/NixOS/nixpkgs/commit/a7f90a36f103ea24f8766de766d3bc72a72c92bf) vector: 0.28.0 -> 0.28.1
* [`24af7f35`](https://github.com/NixOS/nixpkgs/commit/24af7f357fca0cfd7b596ed7ebf04a3e8a0ee37b) byacc: 20221229 -> 20230219
* [`d0879528`](https://github.com/NixOS/nixpkgs/commit/d0879528a63d927b4d571ed9242b8ab9b7f2fda8) Patch hercules-ci-agent to support cachix 1.3
* [`14af7c5a`](https://github.com/NixOS/nixpkgs/commit/14af7c5a37dcb5c09e13b458ca54a794b8641df2) directx-shader-compiler: 1.7.2212 -> 1.7.2212.1
* [`d966df07`](https://github.com/NixOS/nixpkgs/commit/d966df07bf7846a471ee1186c7039e1ca91f9080) pulumi: 3.55.0 -> 3.56.0
* [`46b4fad0`](https://github.com/NixOS/nixpkgs/commit/46b4fad03e60e68a728ace81aaf8db2b6af7d31a) conftest: 0.39.1 -> 0.39.2
* [`09b38d10`](https://github.com/NixOS/nixpkgs/commit/09b38d10cc0930fc1005e703cd26c99f5b5d55c6) libfabric: 1.17.0 -> 1.17.1
* [`3e79b30f`](https://github.com/NixOS/nixpkgs/commit/3e79b30f642ccaf6b3f25c851ada5b34d94f42ed) browserpass: 3.0.10 -> 3.1.0
* [`9550348c`](https://github.com/NixOS/nixpkgs/commit/9550348c1aea20ecf2a10a4d725bc5c30c8452e3) ocamlPackages.{arp,ethernet,tcpip}: some cleaning
* [`7fa20e70`](https://github.com/NixOS/nixpkgs/commit/7fa20e70ea7e1c98e8f6ae1d90564d1d0444e4f2) ocamlPackages.mirage-stack: 2.2.0 → 4.0.0
* [`b13286ad`](https://github.com/NixOS/nixpkgs/commit/b13286ad0271612bcc0e7bb198da42b37bc2eaf5) ocamlPackages.mirage-protocols: 5.0.0 → 8.0.0
* [`42441152`](https://github.com/NixOS/nixpkgs/commit/42441152b4bc50d8b92f59b03ddba55c5a02317a) python310Packages.peaqevcore: 12.2.6 -> 12.2.7
* [`b879ef25`](https://github.com/NixOS/nixpkgs/commit/b879ef25813dff5803fdbb1423d1aa0d014ad0ed) python310Packages.aioesphomeapi: 13.4.1 -> 13.5.0
* [`a3dcdef4`](https://github.com/NixOS/nixpkgs/commit/a3dcdef4a78b4a459fd0aa06d99ad82623826131) chezmoi: 2.31.0 -> 2.31.1
* [`1f1271bd`](https://github.com/NixOS/nixpkgs/commit/1f1271bd764e3732666c1bc389aec7089f293bdc) gitsign: add developer-guy to maintainers list
* [`bb26db7d`](https://github.com/NixOS/nixpkgs/commit/bb26db7dd930499c3a759623ee05473953094cfd) python310Packages.nestedtext: add changelog to meta
* [`49a67605`](https://github.com/NixOS/nixpkgs/commit/49a676052101f4b2206a2b559181ab6050c0eac4) python310Packages.nestedtext: equalize
* [`dba4f381`](https://github.com/NixOS/nixpkgs/commit/dba4f3816648b2a1a53df0b7b4ad23619d97e7f7) python310Packages.nestedtext: disable on unsupported Python releases
* [`6509273d`](https://github.com/NixOS/nixpkgs/commit/6509273d853b8d0b3d90fe5edfd43397525b1753) python310Packages.nestedtext: 1.2 -> 3.5
* [`cab5d3d7`](https://github.com/NixOS/nixpkgs/commit/cab5d3d75b6488ce5614b7e4fd074f74919a4363) circleci-cli: 0.1.23667 -> 0.1.23816
* [`9978ed0d`](https://github.com/NixOS/nixpkgs/commit/9978ed0d20b8f899c3d08a30089c0c3310359262) elmPackages.*: Semi automated update
* [`d6630686`](https://github.com/NixOS/nixpkgs/commit/d6630686893dc78f4d2ab908d845cae131443224) python310Packages.parametrize-from-file: disable failing test
* [`a0abef4a`](https://github.com/NixOS/nixpkgs/commit/a0abef4ae64d2c2161c1fa21ac7a6c222b6caf7f) python310Packages.google-cloud-websecurityscanner: 1.11.1 -> 1.12.0
* [`2a68c63f`](https://github.com/NixOS/nixpkgs/commit/2a68c63fc6c89ee7b9039e63cb612eea9dbc0c01) stunnel: 5.67 -> 5.69
* [`546adc67`](https://github.com/NixOS/nixpkgs/commit/546adc67e70ce0b1aa6a34ad2ccc0238548320ed) organicmaps: 2023.01.25-3 -> 2023.03.05-5
* [`fd296e5d`](https://github.com/NixOS/nixpkgs/commit/fd296e5d4d0649390bae0ec26a680f2db3f3861e) colima: 0.5.2 -> 0.5.3
* [`f59d3afc`](https://github.com/NixOS/nixpkgs/commit/f59d3afcd5e0d0e7e763155254b89ef115ecb654) organicmaps: add updateScript
* [`0fd67b46`](https://github.com/NixOS/nixpkgs/commit/0fd67b467ad31cb7af901989df3e5e4a59f9e91d) gobgp: 3.11.0 -> 3.12.0
* [`329e37ab`](https://github.com/NixOS/nixpkgs/commit/329e37ab4c2db9065900e14ce96b286076f0219a) d2: 0.2.2 -> 0.2.3
* [`106f543e`](https://github.com/NixOS/nixpkgs/commit/106f543e505af38b360748388cbb0e1e0adb9637) zellij: 0.34.4 -> 0.35.1
* [`5fc58a9c`](https://github.com/NixOS/nixpkgs/commit/5fc58a9cb4370cf4cecbbeeaf101211beee8b61e) jimtcl: 0.81 -> 0.82
* [`dc45d4e5`](https://github.com/NixOS/nixpkgs/commit/dc45d4e5a7d69b364c7623637d168f97fd6cfa12) cplay-ng: 5.1.0 -> 5.2.0
* [`705ee06f`](https://github.com/NixOS/nixpkgs/commit/705ee06f10d55a7b1f61b859be81a47b583df033) dillong: add meta.mainProgram
* [`79394475`](https://github.com/NixOS/nixpkgs/commit/7939447527bf256129c8b44883f31edb261de165) Update pkgs/development/r-modules/default.nix
* [`49878856`](https://github.com/NixOS/nixpkgs/commit/49878856e6cde3ae674f470da407e3bde2f55c9d) https://github.com/NixOS/nixpkgs/pull/188334#issuecomment-1445425412
* [`27375af8`](https://github.com/NixOS/nixpkgs/commit/27375af8c3a4b2adb696075d424e6635b21fce24) flyctl: 0.0.476 -> 0.0.477
* [`4830391e`](https://github.com/NixOS/nixpkgs/commit/4830391e718434341699eada1637aa8261297a6a) youtube-tui: init at 0.7.0
* [`74bbf74f`](https://github.com/NixOS/nixpkgs/commit/74bbf74fc935b549127d8d65600c58c31698249f) maintainers: add Ruixi-rebirth
* [`e34328aa`](https://github.com/NixOS/nixpkgs/commit/e34328aa3a0949f955ee96317c3bcf70f5c5ec07) netcoredbg: 2.0.0-895 -> 2.2.0-961
* [`c0a2b57e`](https://github.com/NixOS/nixpkgs/commit/c0a2b57e200e41f4b33af9e2f14a4b861c88811d) maintainers: add konradmalik
* [`62a0d2eb`](https://github.com/NixOS/nixpkgs/commit/62a0d2eb9fcb81a94e1652d4a0d2a4c47a3059cd) ginkgo: 2.8.4 -> 2.9.0
* [`253cdabf`](https://github.com/NixOS/nixpkgs/commit/253cdabfb6271fdfa855cbc120db1bee4d73998b) git-branchless: 0.6.0 -> 0.7.0
* [`561ec56a`](https://github.com/NixOS/nixpkgs/commit/561ec56a304e3d707da6a7f842cc2158fcefae12) acr: refactor
* [`6713a092`](https://github.com/NixOS/nixpkgs/commit/6713a092915702c8d45a5b22f8f752ca6eea89c8) flyctl: 0.0.476 -> 0.0.477
* [`c3982aae`](https://github.com/NixOS/nixpkgs/commit/c3982aae4e4af665e3fdd7d42d04752a2f378db8) forkstat: 0.03.00 -> 0.03.01
* [`4839388d`](https://github.com/NixOS/nixpkgs/commit/4839388d2b95d909f53236e2d8f899aa811ba76a) byacc: refactor
* [`20b50b7a`](https://github.com/NixOS/nixpkgs/commit/20b50b7a8f853f209421c8951617b376e2e819b5) jabref: 5.7 -> 5.9
* [`43f2c5ef`](https://github.com/NixOS/nixpkgs/commit/43f2c5ef663ade65f947ef3f83b76da50590f0f6) teleport: 12.0.2 -> 12.1.0
* [`6f3e07ed`](https://github.com/NixOS/nixpkgs/commit/6f3e07edfafe126902643cb7cafee89692091e89) python310Packages.google-cloud-spanner: 3.27.1 -> 3.28.0
* [`80380122`](https://github.com/NixOS/nixpkgs/commit/803801225594149d8b4f3836acd57fca4d366816) janet: 1.26.0 -> 1.27.0
* [`3032954d`](https://github.com/NixOS/nixpkgs/commit/3032954df3660ea74c72e69b42ecb97606c290ad) python310Packages.snapcast: 2.3.1 -> 2.3.2
* [`ae3b83c8`](https://github.com/NixOS/nixpkgs/commit/ae3b83c809f5ef9140c597b3d18896c02a5dcd25) hugo: 0.111.1 -> 0.111.2
* [`27eab436`](https://github.com/NixOS/nixpkgs/commit/27eab436bd6c9bb50bf48e9c4587bdf135ec3fdd) nixos/tests/hostname.nix: nixpkgs-fmt
* [`5566961d`](https://github.com/NixOS/nixpkgs/commit/5566961d2e43a688b0892fafe6c0f65aea1bf6b5) nixosTests.hostname: stop using deprecated nodes.machine.config
* [`ddf52e63`](https://github.com/NixOS/nixpkgs/commit/ddf52e637ced39a041cb70c95c30c4fe2095608c) gopsuinfo: 0.1.2 -> 0.1.3
* [`10684ae9`](https://github.com/NixOS/nixpkgs/commit/10684ae9c4362edf2b469548d7315b1b2584af7e) python3Packages.nix-prefetch-github: 6.0.0 -> 6.0.1
* [`525aff3a`](https://github.com/NixOS/nixpkgs/commit/525aff3ab33ab996d3532a45ec5478295c55a169) elisp-packages/manual-packages.nix: use self-scoped callPackage
* [`2acbdc41`](https://github.com/NixOS/nixpkgs/commit/2acbdc41e9c7ba55d2d876ab15039ce49e13bf8d) ffado: 2.4.3 -> 2.4.7
* [`9cb0772d`](https://github.com/NixOS/nixpkgs/commit/9cb0772d436dd64f319643d1f0b78076237ed82a) calcure: init at 2.8.2
* [`66b05cfb`](https://github.com/NixOS/nixpkgs/commit/66b05cfb9a00cfd8ec246e9591d5afbea7adca2e) dbmate: 1.16.2 -> 2.0.1
* [`23e0077d`](https://github.com/NixOS/nixpkgs/commit/23e0077d3653757c405a848d07ddbd37507a7ece) fizz: 2023.02.27.00 -> 2023.03.06.00
* [`f78d3c7d`](https://github.com/NixOS/nixpkgs/commit/f78d3c7d5f671fb2917e5212a20daab099cdbb05) jql: 5.1.6 -> 5.1.7
* [`1af3c49d`](https://github.com/NixOS/nixpkgs/commit/1af3c49d48ee8575dbe47994ef8ec55a6415d876) clojure: 1.11.1.1237 -> 1.11.1.1252
* [`2ca73535`](https://github.com/NixOS/nixpkgs/commit/2ca73535423e4252803b41d843ef59309658af49) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`35ca4727`](https://github.com/NixOS/nixpkgs/commit/35ca4727fbf3cedef60681f23f5384aa8e758998) python310Packages.slack-sdk: 3.20.0 -> 3.20.1
* [`6d8041b0`](https://github.com/NixOS/nixpkgs/commit/6d8041b0532c8b51a93f68c9737feecbb195d32a) writeShellApplication: Prefer lib.getExe over unwrapped ShellChecked
* [`0ba1c25b`](https://github.com/NixOS/nixpkgs/commit/0ba1c25b620047a8c05cccce308fcb76c25c1780) python310Packages.hvac: 1.0.2 -> 1.1.0
* [`04a5d95d`](https://github.com/NixOS/nixpkgs/commit/04a5d95dbf13ed3776edc7c24927cf76975f37aa) maintainers: add milran
* [`42cda97c`](https://github.com/NixOS/nixpkgs/commit/42cda97c500b54ad2e8617d515cc198a027dceaa) gqlgenc: init at 0.11.3
* [`5b9628a9`](https://github.com/NixOS/nixpkgs/commit/5b9628a9ed381e34171c88cd8f17f1b6b7614dcc) teleport: add justinas to maintainers
* [`701a8387`](https://github.com/NixOS/nixpkgs/commit/701a838718504aa719de3913be0530c35b83da36) teleport: add arianvp to maintainers
* [`1f2cf28a`](https://github.com/NixOS/nixpkgs/commit/1f2cf28aa96e39f23abd7fa367273f9800f87521) algolia-cli: 1.3.0 -> 1.3.1
* [`73f2f4c6`](https://github.com/NixOS/nixpkgs/commit/73f2f4c6a8d503c5f179a84162a2eda151a93874) freac: 1.1.6 -> 1.1.7
* [`af13b8f8`](https://github.com/NixOS/nixpkgs/commit/af13b8f8523a6c2f74a207210f30d8c9f54ec3cd) boca: 1.0.6a -> 1.0.7
* [`19f0a78c`](https://github.com/NixOS/nixpkgs/commit/19f0a78c195223e7021ff4d16bad71c6f4cb981d) mpvScripts.uosc: init at 4.6.0
* [`b85c1e31`](https://github.com/NixOS/nixpkgs/commit/b85c1e319e28161044e0ca1a33cdb69310d1e93f) node2nix: pull in patch to fix bin scripts with crlf line-endings
* [`0835e5a1`](https://github.com/NixOS/nixpkgs/commit/0835e5a189bf0ae676ccfd91afaf0e6c39c65b28) nodePackages: regen only node-env
* [`27688662`](https://github.com/NixOS/nixpkgs/commit/2768866261ee21659edc6427f66d5b5b0f613752) nixosTests.pantheon: ensure the password box is focused when login
* [`94ce5a87`](https://github.com/NixOS/nixpkgs/commit/94ce5a875a001d285537a8757fd6e63d6b3f93f3) pkgs/tools/wayland: enable strictDeps
* [`47ace7b0`](https://github.com/NixOS/nixpkgs/commit/47ace7b0af442b2e6bdb8728330622c7dbc81499) pkgs/tools/nix: enable strictDeps
* [`9bfeb0d7`](https://github.com/NixOS/nixpkgs/commit/9bfeb0d751e7bbffb3d078f6a87804dd26ceae19) checkip: 0.44.2 -> 0.45.1
* [`5eb5d881`](https://github.com/NixOS/nixpkgs/commit/5eb5d881a49ce1eeecf24dc501efead1f70fc620) nixos/nginx: add defaultMimeTypes option
* [`3e38add9`](https://github.com/NixOS/nixpkgs/commit/3e38add9b06f92e0508acd7013bd4e15c388bd8a) maintainers: add connorbaker
* [`518ee5c9`](https://github.com/NixOS/nixpkgs/commit/518ee5c99bb9980deeaf2db102bf7abca901ad8b) zine: 0.11.1 -> 0.12.0
* [`2ba99961`](https://github.com/NixOS/nixpkgs/commit/2ba999615a0a558660a4eb00d42704566223264d) psql2csv: init at 0.12
* [`d8831d92`](https://github.com/NixOS/nixpkgs/commit/d8831d9224687aeb8e5b49ec7d626c94fa61d2e3) somebar: 1.0.0 -> 1.0.3
* [`2f430da1`](https://github.com/NixOS/nixpkgs/commit/2f430da1c6aaeb4306427b77f139f53dcd729e08) Replacing MRAN mirror with posit
* [`22cf9cd0`](https://github.com/NixOS/nixpkgs/commit/22cf9cd0112c9765d99226e38bdce9b7d82fba7d) sfeed: 1.6 -> 1.7
* [`de1f8d6b`](https://github.com/NixOS/nixpkgs/commit/de1f8d6bd89b43d0cd09ee13c94e5c60736b8333) maestro: 1.23.0 -> 1.24.0
* [`02cd0a5d`](https://github.com/NixOS/nixpkgs/commit/02cd0a5dfcb99b162791bade2d2888c8187a6a92) sherpa: 2.2.13 -> 2.2.14 ([nixos/nixpkgs⁠#220016](https://github.com/nixos/nixpkgs/issues/220016))
* [`27684f88`](https://github.com/NixOS/nixpkgs/commit/27684f8832048988eecdced28f3879db396a9b7e) mindustry: 141.2 -> 142
* [`acf1389e`](https://github.com/NixOS/nixpkgs/commit/acf1389e2fbc757cbcd731bf1c26a1ef940b2e0f) goreleaser: add caarlos0 to maintainers list
* [`a76b5ced`](https://github.com/NixOS/nixpkgs/commit/a76b5ced8b75f6b3767d6a0349abc5a8b5efb777) goreleaser: add developer-guy to maintainers list
* [`25939765`](https://github.com/NixOS/nixpkgs/commit/25939765180ed716662ed2c441ebe2506202cd8b) csdr: 0.18.0 -> 0.18.1
* [`7e1bcf5f`](https://github.com/NixOS/nixpkgs/commit/7e1bcf5f38a361828604e68efc98825ee0e060c2) glooctl: 1.13.8 -> 1.13.9
* [`0c370aab`](https://github.com/NixOS/nixpkgs/commit/0c370aab6450244197fcd08814a42cdf560ea973) aws-sso-cli: 1.9.9 -> 1.9.10
* [`937e716d`](https://github.com/NixOS/nixpkgs/commit/937e716d4ea11874fdd6381ced8a93f42f4d7273) python3Packages.sphinxext-opengraph: 0.7.5 -> 0.8.1
* [`8460c8b1`](https://github.com/NixOS/nixpkgs/commit/8460c8b124a00c603ccf1786e1a7d19d58874790) tlaps: migrate to OCaml 4.14
* [`0a11517a`](https://github.com/NixOS/nixpkgs/commit/0a11517a84f5eab2e7d4ef5219325f20cc52653f) act: 0.2.42 -> 0.2.43
* [`985e04ac`](https://github.com/NixOS/nixpkgs/commit/985e04ac1b00e59cc927e42812576845c10c2e78) maintainers: add kirillrdy
* [`72d7d2e9`](https://github.com/NixOS/nixpkgs/commit/72d7d2e9cc08bd38fec8cd96fe1bb0b743e87f2d) awsebcli: add kirillrdy as maintainer
* [`ecfff018`](https://github.com/NixOS/nixpkgs/commit/ecfff018eb859fe3d77f3c27a61c7cc11fe54d52) masscan: add patch to fix resume functionality ([nixos/nixpkgs⁠#219905](https://github.com/nixos/nixpkgs/issues/219905))
* [`3d206db3`](https://github.com/NixOS/nixpkgs/commit/3d206db3c4ad642…
github-actions bot added a commit to aarnphm/whispercpp that referenced this pull request Mar 15, 2023
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/nixpkgs@9533b01d...b16f2a75](https://github.com/NixOS/nixpkgs/compare/9533b01d66b19c13d7c873d37633326c8976e598...b16f2a75619fe8e6adf4583f5fc6448bc967d482)

* [`e9ad0246`](https://github.com/NixOS/nixpkgs/commit/e9ad02461516d74b3e53c5fde55bd41f104dcad5) xen: move patches specific for 4.10
* [`2f40c464`](https://github.com/NixOS/nixpkgs/commit/2f40c4647b1bf46abded4136075ea47533906fcb) xen: upgrade to 4.15
* [`9591c917`](https://github.com/NixOS/nixpkgs/commit/9591c9170fd20966e6a5e6f108bc4d4f19fcd25d) xen: bump to 4.15.1
* [`93437909`](https://github.com/NixOS/nixpkgs/commit/93437909af24b6728e447ffbeaef7923f8814f3c) xen: patch 4.15 with XSA-386
* [`f82ceb1c`](https://github.com/NixOS/nixpkgs/commit/f82ceb1c489cf552e668e5a6411ae60a4a475fd6) python310Packages.dvc-http: init at 0.0.1
* [`51ba2337`](https://github.com/NixOS/nixpkgs/commit/51ba23371779e1018fc89573f94ca414c09c4e61) pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32
* [`efbeb1bb`](https://github.com/NixOS/nixpkgs/commit/efbeb1bb5e90ab3ca2d5184e446cea4fa97c29cb) prometheus-cpp: 1.0.1 -> 1.1.0
* [`57b09f29`](https://github.com/NixOS/nixpkgs/commit/57b09f29c6345f0ca701b79760dfd23443c3a982) vscode-extensions.jellyedwards.gitsweep: init at 0.0.15
* [`00ae655e`](https://github.com/NixOS/nixpkgs/commit/00ae655e639e620ee5dcfd6f1bd9ccb4e337eea1) btrbk: Use sudo or doas based on configuration
* [`3144b00d`](https://github.com/NixOS/nixpkgs/commit/3144b00d2486ca5d85098a688a76a5e945de411d) btrbk: add doas variant of module test
* [`9a848178`](https://github.com/NixOS/nixpkgs/commit/9a8481780b31e101dc941a3d619ce4803dc5d525) libsForQt515.solid: patch binary search paths
* [`a7ea3911`](https://github.com/NixOS/nixpkgs/commit/a7ea3911798120047beb25be107138a0c547dce2) swww: init at 0.5.0
* [`61840f71`](https://github.com/NixOS/nixpkgs/commit/61840f7181bc17f3c808fcae5acc656a2408ab7b) nixos/prometheus: Add new relabel_configs actions
* [`1f9b92b0`](https://github.com/NixOS/nixpkgs/commit/1f9b92b0e6f2dd073f1863d95fd6587448415214) fetchdarcs: fetch by commit hash
* [`67253945`](https://github.com/NixOS/nixpkgs/commit/67253945376ed8ac3dc166c5b3c469cd53deb4e9) maintainers: add cbleslie
* [`a8cfa9b5`](https://github.com/NixOS/nixpkgs/commit/a8cfa9b5a306f7ad0d1df1bed9a649530f6c78e8) monitorcontrol: init at 4.1.0
* [`f88873d8`](https://github.com/NixOS/nixpkgs/commit/f88873d877d17617ed11a8f6aba49db9ae57cdbb) runelite: 2.1.5 -> 2.5.0
* [`d8b19108`](https://github.com/NixOS/nixpkgs/commit/d8b19108efad3992384606dd9afda5cadf195ea1) goku: 0.5.2 -> 0.6.0, fix deps, add aarch64
* [`2f8266e0`](https://github.com/NixOS/nixpkgs/commit/2f8266e02234a6a2e2ce2b939366e63b5369c278) sonic-pi: add updateScript
* [`5988ada8`](https://github.com/NixOS/nixpkgs/commit/5988ada8358cb66b5486889db22aba37caaf4f4c) sonic-pi: add ruby to nativeBuildInputs
* [`0bc74963`](https://github.com/NixOS/nixpkgs/commit/0bc74963f09dc60aefb151d539402dcf5d2833b0) zoneminder: 1.36.28 -> 1.36.32
* [`4c64355f`](https://github.com/NixOS/nixpkgs/commit/4c64355fa3f48800ec36ef0b8c41dd5bcb895d6e) nixos/zoneminder: also run zmupdate "freshen" on start
* [`8093c136`](https://github.com/NixOS/nixpkgs/commit/8093c136a2fadb81a6bc629a33827ed4c39ed55e) nixos/zoneminder: requires `sysvsem` PHP extension
* [`86b48684`](https://github.com/NixOS/nixpkgs/commit/86b48684bb028e551bf6c876d0a0668532ea2f4f) nixos/zoneminder: automatically update Nix store path in config DB
* [`e7383a32`](https://github.com/NixOS/nixpkgs/commit/e7383a32e365371b9d62c30f16089687db7cb5d4) gitlab-pages: Maintain together with the rest of GitLab + add to...
* [`06166c8c`](https://github.com/NixOS/nixpkgs/commit/06166c8c7036fc2df964acd53c60fe0e3b8bcbb6) python3Packages.json-stream-rs-tokenizer: init at 0.4.13
* [`195600bc`](https://github.com/NixOS/nixpkgs/commit/195600bc7e7af3d62867f4729a67271d52148b5c) python3Packages.json-stream: 1.5.1 -> 2.1.1
* [`baf1f129`](https://github.com/NixOS/nixpkgs/commit/baf1f1293b289ce53d9b660465cd68e1a3e00b96) ruby: Fix withPackages on darwin with makeBinaryWrapper
* [`9fdd9729`](https://github.com/NixOS/nixpkgs/commit/9fdd97298b6b8b0a8385ada8b81d9d1d56ed7c34) nixos/java: add binfmt option
* [`e31dea3d`](https://github.com/NixOS/nixpkgs/commit/e31dea3d14e72a445db2c9b22f4ea005c36a5c85) python3Packages.parsimonious: disable benchmark tests that may fail
* [`dbd563b9`](https://github.com/NixOS/nixpkgs/commit/dbd563b9b8c20071075bcdd5912b99486b3fcfa3) nixos/gitlab: Improve support for GitLab Pages
* [`2d4f4e9b`](https://github.com/NixOS/nixpkgs/commit/2d4f4e9bdfdcc69ea19299150db5c26c7aa4e44a) nixos/gitlab: Handle secrets in GitLab Pages config
* [`678eed32`](https://github.com/NixOS/nixpkgs/commit/678eed323ffd90117472cd432ebe85dddaff07f1) nixos/grub: Name initrd-secrets by system, not by initrd
* [`b90cf061`](https://github.com/NixOS/nixpkgs/commit/b90cf0612e5963849d0dfe22e95debe834e9abde) nixos/atop: Remove upgraded logfiles if not replaced
* [`95c17b8e`](https://github.com/NixOS/nixpkgs/commit/95c17b8e72da5b9b668a6fa69cc6ee73151b8d8d) lout: 3.40 -> 3.42.2
* [`218c7795`](https://github.com/NixOS/nixpkgs/commit/218c7795a669d577fc3ae79a571135e5f105793a) nixos/cgit: init
* [`45f06d97`](https://github.com/NixOS/nixpkgs/commit/45f06d9712bdd6ee8084065bbd0776d73982fd6e) nixos/cgit: add package option
* [`6f63865c`](https://github.com/NixOS/nixpkgs/commit/6f63865cf470ce99b36bceacbefbb6886d05be51) dockerTools: Add minimal test case for [NixOS/nixpkgs⁠#214434](https://github.com/NixOS/nixpkgs/issues/214434)
* [`f4e4cac0`](https://github.com/NixOS/nixpkgs/commit/f4e4cac0c86f0e16aac773083aebbfc0e7daea43) dockerTools: Correctly unpack duplicate rootfs diffs
* [`9377f94a`](https://github.com/NixOS/nixpkgs/commit/9377f94ac5c69eaeca0a2a9d13a41ea7f41c0b7d) swww: v0.5.0 -> v0.7.0
* [`a124a517`](https://github.com/NixOS/nixpkgs/commit/a124a517b2e66078143beaae058e394aa5c1acc0) Update pkgs/tools/wayland/swww/default.nix
* [`2a5bf1fc`](https://github.com/NixOS/nixpkgs/commit/2a5bf1fcdfc8658678bc9305677dfa0fda907367) Update pkgs/tools/wayland/swww/default.nix
* [`2bf1fca5`](https://github.com/NixOS/nixpkgs/commit/2bf1fca5ac68b085bbc42f445731791cf5aa3b1b) Update pkgs/tools/wayland/swww/default.nix
* [`68f5e955`](https://github.com/NixOS/nixpkgs/commit/68f5e9554ffa3cfee31786f9a3013ebd8a7d8308) Add maintainers
* [`7c201f6b`](https://github.com/NixOS/nixpkgs/commit/7c201f6b53bf4acc77184d110cd2cfd72d065bae) Add whitespaces for readability.
* [`72cfabf2`](https://github.com/NixOS/nixpkgs/commit/72cfabf2222ed982db3c24b70aec750861561f50) mononoki: 1.3 -> 1.5
* [`0566d27d`](https://github.com/NixOS/nixpkgs/commit/0566d27d03a7b9c285045f57004a6ba2c2613454) coder: fix web frontend building
* [`56ecab70`](https://github.com/NixOS/nixpkgs/commit/56ecab709a5a6e49049c0892a7cc59cfa22bdd98) nixos/coder: init module
* [`eb38ad04`](https://github.com/NixOS/nixpkgs/commit/eb38ad04efae0ebcd7217c4ccace3da0102d85af) dockerTools: ensure runAsRoot script not optimized away in test
* [`c66cabe3`](https://github.com/NixOS/nixpkgs/commit/c66cabe33ea1f969ef9562feeef0a015b83a60b1) dockerTools: use more familiar terminology to describe test image
* [`298c543e`](https://github.com/NixOS/nixpkgs/commit/298c543e55284a3be8e8785302883fb873e005af) dockerTools: Specify 'latest' tag for repeated layer test image
* [`84e04ccf`](https://github.com/NixOS/nixpkgs/commit/84e04ccf8570e9f8072486f7d750d326225c7117) dockerTools: Preprocess layers list before unpack to handle repeated layers
* [`c7fbd40f`](https://github.com/NixOS/nixpkgs/commit/c7fbd40fd152506057d84e3e656dd564164168d2) groff: Add enableIconv and enableLibuchardet option
* [`235d9e21`](https://github.com/NixOS/nixpkgs/commit/235d9e218736a7d930992e7297bef1182d69fd60) lib/licenses.nix: Add cc-by-nc-nd-30
* [`4efb17b5`](https://github.com/NixOS/nixpkgs/commit/4efb17b50b96b9058d646ecec8d632d69d3c9633) dendrite: 0.11.0 -> 0.11.1
* [`f0ddf281`](https://github.com/NixOS/nixpkgs/commit/f0ddf281c593b82a2bd11110e8147ba85a1de70c) sane-backends: 1.1.1 -> 1.2.1
* [`c845a281`](https://github.com/NixOS/nixpkgs/commit/c845a2815fac9fc3ad40a2095aa3d3d129616af1) cargo-pgx: add buildPgxExtension
* [`4e189d76`](https://github.com/NixOS/nixpkgs/commit/4e189d769bdfb7a220da5cd98413d63d5768489a) timescaledb-toolkit: init at 1.14.0
* [`9dc7a05a`](https://github.com/NixOS/nixpkgs/commit/9dc7a05a85a0b051d208f41ddca0f6cdb6e6ff06) cargo-pgx/timescaledb_toolkit: add nixos test
* [`5287f144`](https://github.com/NixOS/nixpkgs/commit/5287f1446fbb227f75f75c2ac5df59c9cd7ca4e6) Apply suggestions from code review
* [`1a2c2846`](https://github.com/NixOS/nixpkgs/commit/1a2c2846b0933b596c51e964acb8a45ab9a13691) lib.path.subpath.join: init
* [`3c486263`](https://github.com/NixOS/nixpkgs/commit/3c4862636fd6a29f69a7b43f82a3cf070a9c650d) linuxPackages.ipu6-drivers: init at 2023-01-17
* [`134e4a64`](https://github.com/NixOS/nixpkgs/commit/134e4a6473a032513c2bea03035342aacaf3f53d) ipu6-camera-bin: init at 2022-11-12
* [`4269391e`](https://github.com/NixOS/nixpkgs/commit/4269391e56b015472b8f238c1ae52442e168348f) ipu6-camera-hal: init at 2023-01-09
* [`c4c9f600`](https://github.com/NixOS/nixpkgs/commit/c4c9f600e7a09bb0044fc10ea3ae62a3c65b76b5) gst_all_1.icamerasrc: init at 202212109
* [`9b4f6d4d`](https://github.com/NixOS/nixpkgs/commit/9b4f6d4d9278632b1e6c28e83ed9764bd0387c43) linuxPackages.ivsc-driver: init at 2023-01-06
* [`6b338572`](https://github.com/NixOS/nixpkgs/commit/6b3385723874fc580a854701292a9a0c7ede4482) ivsc-firmware: init at 2022-11-02
* [`b38d6054`](https://github.com/NixOS/nixpkgs/commit/b38d6054d789ec8f12a11ed7c2107ce770be7a98) linuxPackages.ipu6-drivers: Reuse ivsc-driver source
* [`731053d8`](https://github.com/NixOS/nixpkgs/commit/731053d8aa1624475779065ef17294c54af072e4) services.cachix-watch-store: fix description of compressionLevel
* [`bacfd9df`](https://github.com/NixOS/nixpkgs/commit/bacfd9df0915c8bb5c4b40234d9cd980196f2398) bitwig-studio: 4.4.6 -> 4.4.8
* [`ee89f8e1`](https://github.com/NixOS/nixpkgs/commit/ee89f8e1e558c2021a7bea8a7dd50b9521afb772) navidrome: 0.49.1 -> 0.49.3
* [`51417891`](https://github.com/NixOS/nixpkgs/commit/514178918f7f97a066911c0ce3fc2d41f550a934) 0.7.0 -> 0.7.2
* [`b3b79fc4`](https://github.com/NixOS/nixpkgs/commit/b3b79fc41eba5f31467bd5aa568ee52a5202ca7a) linuxPackages.systemtap: 4.5 -> 4.8
* [`0061f844`](https://github.com/NixOS/nixpkgs/commit/0061f844c9bbc993606eecd79243a07fb358443e) onlyoffice-documentserver: 7.3.0 -> 7.3.2
* [`72840a9f`](https://github.com/NixOS/nixpkgs/commit/72840a9f2f118c91f1421b8e8773fda576ea9114) peek: switch to ffmpeg-full
* [`fef1cfb0`](https://github.com/NixOS/nixpkgs/commit/fef1cfb05a1fa5596591058fe56fbb120b83d550) python3Packages.grpcio: Fix build parallelism
* [`f83f0f8d`](https://github.com/NixOS/nixpkgs/commit/f83f0f8dfaf0f7ec853597fa236340bc1873d315) python3Packages.mixins: init at 0.1.4
* [`e78dc938`](https://github.com/NixOS/nixpkgs/commit/e78dc938d81cc175f4af9da0d94771c39aa43cd5) nixos/qemu-vm: fix minor typo
* [`9f57a615`](https://github.com/NixOS/nixpkgs/commit/9f57a615e4f912c83d3f66d8e051c1b18b6ba2d3) nifi: 1.16.3 -> 1.20.0
* [`4d547243`](https://github.com/NixOS/nixpkgs/commit/4d547243a283353e7cb1c39fe76efa66f18ecf3c) signal-desktop: 6.5.1 -> 6.7.0, signal-desktop-beta: 6.6.0-beta.1 -> 6.8.0-beta.1
* [`2c7af955`](https://github.com/NixOS/nixpkgs/commit/2c7af95567179d59340bf54800642b851133dd3c) pre-commit: 2.20.0 -> 3.1.0
* [`4b9857d4`](https://github.com/NixOS/nixpkgs/commit/4b9857d413bf41d8e0036a4bee891621fc505127) calls: 43.2 -> 43.3
* [`1e2257a4`](https://github.com/NixOS/nixpkgs/commit/1e2257a4584ee372ab772741e5546bed6244d591) maintainers: update lunik1's gpg key
* [`91294961`](https://github.com/NixOS/nixpkgs/commit/912949612371d0d6a26640992f13dfbec3c06711) libheif: 1.14.2 -> 1.15.1
* [`eddb6a1b`](https://github.com/NixOS/nixpkgs/commit/eddb6a1b6241303c0310993294662e9347a2435d) hunspell: fix spanish-language dictionaries
* [`c4fc77a0`](https://github.com/NixOS/nixpkgs/commit/c4fc77a0c987f48f4927bbbbd295ed3ecafd94c0) python3Packages.qtile-extras: init at 0.22.1
* [`4c8b75ed`](https://github.com/NixOS/nixpkgs/commit/4c8b75ed9a4a2583b1b8f58745852d0f4fa49fcc) dotnetPackages.Nuget: 5.6.0.6489->6.3.1.1
* [`f388236a`](https://github.com/NixOS/nixpkgs/commit/f388236ab2b1c8b25220492e8774bdf3de69ce3f) python310Packages.sentry-sdk: 1.15.0 -> 1.16.0
* [`476b6f8d`](https://github.com/NixOS/nixpkgs/commit/476b6f8d6c69084280fa691fdd7b12109fe0534d) python310Packages.deid: init at 0.3.21
* [`0acc6df7`](https://github.com/NixOS/nixpkgs/commit/0acc6df7423fc042f29a0df8a3c39249b2e901e9) refactor: Add spacing around tests
* [`73981dd9`](https://github.com/NixOS/nixpkgs/commit/73981dd9c24d3b7529c12ea83c4d59c1377a2b99) feat: Create desktop item for `appimage-run`
* [`5648b252`](https://github.com/NixOS/nixpkgs/commit/5648b252998033358685ddc987450b59bb6d8dfd) maintainers: change email, add matrix
* [`a3059850`](https://github.com/NixOS/nixpkgs/commit/a3059850c5d6b53975d85e00b879819e1e3585e3) zix: init at unstable-2023-02-13
* [`03bd6304`](https://github.com/NixOS/nixpkgs/commit/03bd63043fe664316f479fc0a548e903432fbb0f) deepin.dtkgui: don't propagate librsvg and freeimage
* [`e3c84efc`](https://github.com/NixOS/nixpkgs/commit/e3c84efc8ebd908b29b1be9f63db8139b3437608) deepin.deepin-terminal: 5.4.34 -> 5.9.40
* [`118bdf25`](https://github.com/NixOS/nixpkgs/commit/118bdf25a6c572dd2fd29d10b1ae2e4d9a95b907) lib/modules: Allow an "anonymous" module with key in disabledModules
* [`735b57d9`](https://github.com/NixOS/nixpkgs/commit/735b57d962bf61f5457f48e8d8e16da56ff1d88a) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`b7d8c463`](https://github.com/NixOS/nixpkgs/commit/b7d8c4630206d113c8cbe22d0ff80be5189a7655) haskellPackages.ghc: 9.2.6 -> 9.2.7
* [`499be580`](https://github.com/NixOS/nixpkgs/commit/499be5802684091917e14e6e320504d5c770b990) haskellPackages: stackage LTS 20.11 -> LTS 20.12
* [`a8abc9e5`](https://github.com/NixOS/nixpkgs/commit/a8abc9e550782b512a0ea20fcda3d10c72b65f64) all-cabal-hashes: 2023-02-19T09:15:19Z -> 2023-03-01T16:43:25Z
* [`bc6029b2`](https://github.com/NixOS/nixpkgs/commit/bc6029b2d1ecc649e9d8b8bab6c5d3c7167df04c) haskellPackages: regenerate package set based on current config
* [`50e7b4bf`](https://github.com/NixOS/nixpkgs/commit/50e7b4bfce7218d1700e3cc420d063ebfbfc04fe) haskellPackages.haskell-gi: use hackage2nix generated 0.26.3 expr
* [`ed65e11b`](https://github.com/NixOS/nixpkgs/commit/ed65e11bac2fde631de8b76a5dddef8aabef2761) haskellPackages.Cabal_3_8_1_0: drop obsolete override
* [`ca44f048`](https://github.com/NixOS/nixpkgs/commit/ca44f0485c6135d1a1be5f9a3ac7ab1b18c24752) python310Packages.questionary: increase open files for testing
* [`5a86855e`](https://github.com/NixOS/nixpkgs/commit/5a86855e006de9420ed5b2f799900bbefb691e53) haskell.packages.*: reflect terminfo update for cross compilation
* [`74ff13b1`](https://github.com/NixOS/nixpkgs/commit/74ff13b12d2762c997ab418f39e81a3fdd909298) haskellPackages.espial: drop upstreamed patch
* [`21b99329`](https://github.com/NixOS/nixpkgs/commit/21b993296fbfd80543fbe14fa0ff6b093ba54502) haskellPackages: reflect haskelline 0.8.2 -> 0.8.2.1
* [`7f2ac905`](https://github.com/NixOS/nixpkgs/commit/7f2ac90596a220c22c28908f0e402d7b09a44951) haskell.packages.ghc94.primitive: 0.7.4.0 -> 0.8.0.0
* [`295066c4`](https://github.com/NixOS/nixpkgs/commit/295066c43d74b2ac73439dcc1d17639d2e55298b) haskell.packages.ghc94.aeson: 2.1.1.0 -> 2.1.2.1
* [`335f3cf3`](https://github.com/NixOS/nixpkgs/commit/335f3cf3906b77a5e0d73dc435b4177c1f50a67d) haskell.packages.ghc94.lens: 5.2 -> 5.2.1
* [`28e1929f`](https://github.com/NixOS/nixpkgs/commit/28e1929fb013cea5aad7ad3ed8daa1cb34a5fe84) git-annex: update sha256 for 10.20230227
* [`fa651582`](https://github.com/NixOS/nixpkgs/commit/fa651582867b2ebd01d87472febcf539996d8e6b) elmPackages.elm-format: reflect text 2.0.1 -> 2.0.2
* [`73665ef4`](https://github.com/NixOS/nixpkgs/commit/73665ef4e43f658edaff4421dd87ec7e19d02923) i3status-rust: 0.22.0 -> 0.30.4
* [`1bf8d63f`](https://github.com/NixOS/nixpkgs/commit/1bf8d63f8fe9b48225ed58a561b991bc4ba00398) openai-full: create variant that includes optional deps
* [`d1949033`](https://github.com/NixOS/nixpkgs/commit/d19490339b900fff1de43876702964f3d41557ea) carla: 2.5.1 -> 2.5.3
* [`c0680473`](https://github.com/NixOS/nixpkgs/commit/c068047330d4c72cca53bf3a3d383bf8896bbcd0) carla: remove python3Packages and gtk2, gk3 assertions
* [`410971fc`](https://github.com/NixOS/nixpkgs/commit/410971fc3597ede8a23e829487847ad35641e69b) zrythm: 1.0.0-alpha.28.1.3 -> 1.0.0-beta.4.5.62
* [`a48211c3`](https://github.com/NixOS/nixpkgs/commit/a48211c319dc9520dbabfd20bd2001f991fd898e) microsoft-edge: fix file picker and `subsituteInPlace`
* [`0367cc8b`](https://github.com/NixOS/nixpkgs/commit/0367cc8b5a7d4e6e62ca7c9f429f8a1901194297) nixos/profiles/base: remove duplicate systemPackages
* [`2c126112`](https://github.com/NixOS/nixpkgs/commit/2c1261127770f1886e49903742e4e989fdae6ad2) phoc: 0.21.1 -> 0.25.0
* [`2455dfab`](https://github.com/NixOS/nixpkgs/commit/2455dfab0da8bb2158d9c404ec13ccf42250ed3e) phosh: 0.23.0 -> 0.25.1
* [`a10d6761`](https://github.com/NixOS/nixpkgs/commit/a10d67619900daa500e010a3c68c1e7799c32eb8) llvm: tighten platforms
* [`3e3367aa`](https://github.com/NixOS/nixpkgs/commit/3e3367aa6a18cf4ec4c79c21f36eec150b3d7939) nixos/profiles/base: remove duplicate and optimize fsPackages
* [`2100c492`](https://github.com/NixOS/nixpkgs/commit/2100c4926200b1ebbee032ad22113597195932f2) endless-sky:0.9.14 -> 0.9.16.1
* [`fa8ecdce`](https://github.com/NixOS/nixpkgs/commit/fa8ecdced8888122a4ec14c8e652d350b2c97fd1) monocraft: 1.4 -> 2.4
* [`9acd60aa`](https://github.com/NixOS/nixpkgs/commit/9acd60aa46f21b69bb96842daac48c4414eaac89) valent: init at unstable-2023-03-02
* [`e9041742`](https://github.com/NixOS/nixpkgs/commit/e9041742ff895927c20b1c3bf04b012184839ffc) haskellPackages.drunken-bishop: unbreak (jail-break)
* [`b373d299`](https://github.com/NixOS/nixpkgs/commit/b373d299bae89922f2bde5f351b90495b182daf2) docs/rust: improve docs for nightly usage
* [`fcc10ee9`](https://github.com/NixOS/nixpkgs/commit/fcc10ee9a4891ea20194fa8178d55786439fd73a) cargo-binutils: don't recommend nixpkgs-mozilla
* [`35081a77`](https://github.com/NixOS/nixpkgs/commit/35081a77d56c84bea79bc810a825179357d68658) cargo-llvm-cov: don't recommend nixpkgs-mozilla
* [`2c02d0ba`](https://github.com/NixOS/nixpkgs/commit/2c02d0ba11687d5ecca95ac33b1e9227f920ac3c) mongosh: 1.6.2 -> 1.8.0, use buildNpmPackage
* [`14c10906`](https://github.com/NixOS/nixpkgs/commit/14c10906dbadc239ae2ecfced6f1dcb9b602da11) btrfs-progs: 6.1.3 -> 6.2.1
* [`6428223c`](https://github.com/NixOS/nixpkgs/commit/6428223c0ec203dc80716f100f89985bc4caafb2) cgreen: take maintenance
* [`abedfdd3`](https://github.com/NixOS/nixpkgs/commit/abedfdd3da6c1a301f23556f06936490e69c070a) maintainers: remove nichtsfrei
* [`fa06318a`](https://github.com/NixOS/nixpkgs/commit/fa06318a46c6110eb5395ffcb0270fca38da09f1) ndn-cxx: unpin openssl_1_1
* [`7e13b629`](https://github.com/NixOS/nixpkgs/commit/7e13b629c733ed7510c8d5fe3c77dce1316c1460) ndn-tools: unpin openssl_1_1
* [`1c430957`](https://github.com/NixOS/nixpkgs/commit/1c430957694840e5771297c5ef7506492dabd270) haskell.packages.ghc94.primitive: Pin to 0.7.4.0
* [`bb5370b8`](https://github.com/NixOS/nixpkgs/commit/bb5370b8b33570e62347a958e309c0161c271db8) nixos/modules/installer/netboot/netboot-minimal: reduce closure size
* [`48eab73b`](https://github.com/NixOS/nixpkgs/commit/48eab73bb6145dc3e78325fc1bda679ba5c8645a) python310Packages.eradicate: update meta
* [`57e21e88`](https://github.com/NixOS/nixpkgs/commit/57e21e88b204c55eac1569807dd974741beffb5f) python310Packages.eradicate: disable on unsupported Python releases
* [`e1806091`](https://github.com/NixOS/nixpkgs/commit/e1806091d7374613c403414ae0debb58e6a7c814) python310Packages.eradicate: 2.1.0 -> 2.2.0
* [`0f1483d1`](https://github.com/NixOS/nixpkgs/commit/0f1483d1a261a1f7f9a3ac109a16cdff68312db4) python310Packages.lineedit: init at 0.1.6
* [`9e3db173`](https://github.com/NixOS/nixpkgs/commit/9e3db1731f248bd604dec537d08196ff361dd5b2) localsend: init at 1.8.0
* [`ca9f0682`](https://github.com/NixOS/nixpkgs/commit/ca9f0682fdbaf70454be9c1dd51250a0065233bd) nixos/systemd-boot: always use profile_path() for system closure paths
* [`73f2d007`](https://github.com/NixOS/nixpkgs/commit/73f2d0074aa039a40fd11ffcce6495568528c56e) python310Packages.rchitect: init at 0.3.40
* [`e730867d`](https://github.com/NixOS/nixpkgs/commit/e730867dc051f9f9f6bd0b641838a24b74cad4c8) python310Packages.radian: init at 0.6.4 and provide radianWrapper
* [`32907346`](https://github.com/NixOS/nixpkgs/commit/3290734615c91f490550d8336e4cf14d897b2027) pkgsStatic.iproute2: fix build (disable shared libraries)
* [`3c4b76f4`](https://github.com/NixOS/nixpkgs/commit/3c4b76f46e2a7301b516df31d6024782eba9ba07) katawa-shoujo: init at 1.3.1
* [`a18b27a3`](https://github.com/NixOS/nixpkgs/commit/a18b27a3f62c72da3c5a1ba6b75c6a188e9b0376) libdeltachat: 1.110.0 -> 1.111.0
* [`33c3687d`](https://github.com/NixOS/nixpkgs/commit/33c3687d221b4be03e9a891636d8c25401c3317b) vscodium: 1.75.0.23033 -> 1.76.0.23062
* [`6f10ea96`](https://github.com/NixOS/nixpkgs/commit/6f10ea96ec9149ef88cf0bd689efbca6e812c314) deltachat-desktop: remove old patch
* [`6a1da3b2`](https://github.com/NixOS/nixpkgs/commit/6a1da3b21ac581ffec660940d75107f3c979df15) python3Packages.openaiauth: init at 0.3.2
* [`5e5d6e16`](https://github.com/NixOS/nixpkgs/commit/5e5d6e16ed90c73684b8426c7ca2567c7f1538fd) python310Packages.deltachat: inherit meta from libdeltachat
* [`823e822a`](https://github.com/NixOS/nixpkgs/commit/823e822aeec15abad61d2b56ee2bf8130a9e34d4) mdbook: 0.4.26 -> 0.4.28
* [`5edaf690`](https://github.com/NixOS/nixpkgs/commit/5edaf6903cee9c187d3ad191c440e38f5ba1406d) taskell: unbreak build
* [`c54e5071`](https://github.com/NixOS/nixpkgs/commit/c54e50710205e56d0a5ccd60ed68f84398b54b8e) taskell: remove doJailbreak
* [`09f2c45f`](https://github.com/NixOS/nixpkgs/commit/09f2c45f6ba57a85d98b0c02cababd6034fd401f) diagrams-gtk: unbreak build
* [`782f4c77`](https://github.com/NixOS/nixpkgs/commit/782f4c779a1aec781fe2747f809964f9b6c0895f) cloud-hypervisor: 29.0 -> 30.0
* [`58244e97`](https://github.com/NixOS/nixpkgs/commit/58244e97c2978648868f1d253c47192bcf4b0756) haskellPackages: regenerate package set based on current config
* [`bf864baa`](https://github.com/NixOS/nixpkgs/commit/bf864baaa28514dbd4714fcfeb5714e7f3af4343) python310Packages.django-ipware: 4.0.2 -> 5.0.0
* [`15ada3ac`](https://github.com/NixOS/nixpkgs/commit/15ada3ac044e169d601929e493077dee17b8f65b) pantheon.elementary-files: 6.2.2 -> 6.3.0
* [`62821edd`](https://github.com/NixOS/nixpkgs/commit/62821edd2e685be68ece5dd50af4b493a4fa9dba) This PR sets default SPARK_HOME and JAVA_HOME for R's sparklyr package using a patch in .onload. Preset value take precedence. SPARK_HOME points to python3Packages.pyspark rather than pkgs.spark because the former is actively maintained.
* [`ad920652`](https://github.com/NixOS/nixpkgs/commit/ad9206529272709d983822f7661bcc8b2ab343c8) element-{web,desktop}: hack to make ofborg maintainer pings work again
* [`a6ad4d51`](https://github.com/NixOS/nixpkgs/commit/a6ad4d5146fdb18c504102e45c842a667eb40d41) python310Packages.django-ipware: add changelog to meta
* [`2d91c09a`](https://github.com/NixOS/nixpkgs/commit/2d91c09a03dcde05ab350e8e7849f55dd3bc97a6) python310Packages.django-ipware: disable on unsupported Python releases
* [`df70514c`](https://github.com/NixOS/nixpkgs/commit/df70514c973227bf1be0b758ecec7a743e0cd0c8) git-workspace: 1.1.0 -> 1.2.1
* [`5f60ed18`](https://github.com/NixOS/nixpkgs/commit/5f60ed186f842d4818de7a6615ad64dbc1c56294) kubelogin-oidc: 1.26.0 -> 1.27.0
* [`3af39763`](https://github.com/NixOS/nixpkgs/commit/3af397636d07d949148e610c278060c7c0c8fb96) evcc: 0.114.0 -> 0.114.1
* [`a6462d10`](https://github.com/NixOS/nixpkgs/commit/a6462d104a8d7004df933c892c9cf2d42c48ee97) iosevka-bin: 19.0.1 -> 20.0.0
* [`14622349`](https://github.com/NixOS/nixpkgs/commit/14622349154c73938ac2b385be92518235e92a0d) hue-plus: init at 1.4.5
* [`a233af68`](https://github.com/NixOS/nixpkgs/commit/a233af68773ab7dbf6157a612ae0eaed02abe98c) android-tools: 33.0.3p2 -> 34.0.0
* [`983d0143`](https://github.com/NixOS/nixpkgs/commit/983d0143d07d494d10cb7368d18852aa815fb3f5) autorestic: 1.7.6 -> 1.7.7
* [`6ced8d96`](https://github.com/NixOS/nixpkgs/commit/6ced8d96e3912ce4b9c5583c6e19667814a3fa9e) bluejeans-gui: 2.31.0.83 -> 2.32.1.3
* [`3966519d`](https://github.com/NixOS/nixpkgs/commit/3966519d12be2fb3fded3420f1cc82d681b17b5d) libreoffice: wrapper.nix rewrite
* [`16818343`](https://github.com/NixOS/nixpkgs/commit/16818343f11972ed7f591080992ba146790cc2f1) maintainers: add apfelkuchen6
* [`481f02f7`](https://github.com/NixOS/nixpkgs/commit/481f02f7dd1b21ddfc363ec30b99fcfac04deaec) mpv: allow scripts to add wrapper args
* [`a4c91d19`](https://github.com/NixOS/nixpkgs/commit/a4c91d198cf2bea44784d578324325e2b21411e4) coreboot-utils: 4.14 -> 4.19
* [`26622690`](https://github.com/NixOS/nixpkgs/commit/266226903f343f867d1d217cab2b8e56f4fdefdc) python310Packages.doorbirdpy: 2.2.1 -> 2.2.2
* [`be1d82d5`](https://github.com/NixOS/nixpkgs/commit/be1d82d5ca6c3e80442d91b1a45af66776326495) python310Packages.openapi-schema-validator: 0.3.4 -> 0.4.3
* [`f1479a8e`](https://github.com/NixOS/nixpkgs/commit/f1479a8e9ff0c57a4d90b7ea1a86777be152330c) python310Packages.openapi-spec-validator: 0.5.1 -> 0.5.5
* [`9ca5356d`](https://github.com/NixOS/nixpkgs/commit/9ca5356d8d4475a12e9ad4d3d611fddbc02d4aa6) python310Packages.openapi-core: 0.16.6 -> 0.17.0
* [`2689297c`](https://github.com/NixOS/nixpkgs/commit/2689297c50e2041d7f1846580f6bd4d784cd45f9) rustpython: 2022-10-11 -> 0.2.0
* [`851e7062`](https://github.com/NixOS/nixpkgs/commit/851e70627a9c4c22dd77bc182b5d1feda59ceea3) python310Packages.evtx: fix build on darwin
* [`bb5edc48`](https://github.com/NixOS/nixpkgs/commit/bb5edc482e691dbf9d0a28348684b2af611c6711) rustpython: fix build on aarch64-linux
* [`7e29e1b2`](https://github.com/NixOS/nixpkgs/commit/7e29e1b2c2cb2adb79783f2393553fbfd52175c5) postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1
* [`ea593627`](https://github.com/NixOS/nixpkgs/commit/ea593627b9df5925f6a9c78698daedbaf2536753) python310Packages.pydata-sphinx-theme: 0.13.0 -> 0.13.1
* [`f6546a76`](https://github.com/NixOS/nixpkgs/commit/f6546a76559371bd690c30e4c4db8f898704ac31) python310Packages.jupyter-book: 0.14.0 -> 0.15.0
* [`fc9ceeba`](https://github.com/NixOS/nixpkgs/commit/fc9ceeba82d0f5c0b4be97ee333e58c41b7ab67d) brakeman: 5.4.0 -> 5.4.1
* [`f613d92a`](https://github.com/NixOS/nixpkgs/commit/f613d92a67fb0872bdb4f622e32183058f262778) smimesign: 0.1.0 -> 0.2.0
* [`70073985`](https://github.com/NixOS/nixpkgs/commit/70073985ae856f777639a4742943f48b317d7799) nixos/gemstash: init module
* [`14af7c5a`](https://github.com/NixOS/nixpkgs/commit/14af7c5a37dcb5c09e13b458ca54a794b8641df2) directx-shader-compiler: 1.7.2212 -> 1.7.2212.1
* [`46b4fad0`](https://github.com/NixOS/nixpkgs/commit/46b4fad03e60e68a728ace81aaf8db2b6af7d31a) conftest: 0.39.1 -> 0.39.2
* [`3e79b30f`](https://github.com/NixOS/nixpkgs/commit/3e79b30f642ccaf6b3f25c851ada5b34d94f42ed) browserpass: 3.0.10 -> 3.1.0
* [`7ed8c4cb`](https://github.com/NixOS/nixpkgs/commit/7ed8c4cbade056a7835876106a6b36f2b84fb113) obs-studio-plugins.advanced-scene-switcher: init at 1.20.5
* [`42441152`](https://github.com/NixOS/nixpkgs/commit/42441152b4bc50d8b92f59b03ddba55c5a02317a) python310Packages.peaqevcore: 12.2.6 -> 12.2.7
* [`a3dcdef4`](https://github.com/NixOS/nixpkgs/commit/a3dcdef4a78b4a459fd0aa06d99ad82623826131) chezmoi: 2.31.0 -> 2.31.1
* [`bb26db7d`](https://github.com/NixOS/nixpkgs/commit/bb26db7dd930499c3a759623ee05473953094cfd) python310Packages.nestedtext: add changelog to meta
* [`49a67605`](https://github.com/NixOS/nixpkgs/commit/49a676052101f4b2206a2b559181ab6050c0eac4) python310Packages.nestedtext: equalize
* [`dba4f381`](https://github.com/NixOS/nixpkgs/commit/dba4f3816648b2a1a53df0b7b4ad23619d97e7f7) python310Packages.nestedtext: disable on unsupported Python releases
* [`6509273d`](https://github.com/NixOS/nixpkgs/commit/6509273d853b8d0b3d90fe5edfd43397525b1753) python310Packages.nestedtext: 1.2 -> 3.5
* [`cab5d3d7`](https://github.com/NixOS/nixpkgs/commit/cab5d3d75b6488ce5614b7e4fd074f74919a4363) circleci-cli: 0.1.23667 -> 0.1.23816
* [`d6630686`](https://github.com/NixOS/nixpkgs/commit/d6630686893dc78f4d2ab908d845cae131443224) python310Packages.parametrize-from-file: disable failing test
* [`2a68c63f`](https://github.com/NixOS/nixpkgs/commit/2a68c63fc6c89ee7b9039e63cb612eea9dbc0c01) stunnel: 5.67 -> 5.69
* [`546adc67`](https://github.com/NixOS/nixpkgs/commit/546adc67e70ce0b1aa6a34ad2ccc0238548320ed) organicmaps: 2023.01.25-3 -> 2023.03.05-5
* [`f59d3afc`](https://github.com/NixOS/nixpkgs/commit/f59d3afcd5e0d0e7e763155254b89ef115ecb654) organicmaps: add updateScript
* [`0fd67b46`](https://github.com/NixOS/nixpkgs/commit/0fd67b467ad31cb7af901989df3e5e4a59f9e91d) gobgp: 3.11.0 -> 3.12.0
* [`79394475`](https://github.com/NixOS/nixpkgs/commit/7939447527bf256129c8b44883f31edb261de165) Update pkgs/development/r-modules/default.nix
* [`49878856`](https://github.com/NixOS/nixpkgs/commit/49878856e6cde3ae674f470da407e3bde2f55c9d) https://github.com/NixOS/nixpkgs/pull/188334#issuecomment-1445425412
* [`e34328aa`](https://github.com/NixOS/nixpkgs/commit/e34328aa3a0949f955ee96317c3bcf70f5c5ec07) netcoredbg: 2.0.0-895 -> 2.2.0-961
* [`c0a2b57e`](https://github.com/NixOS/nixpkgs/commit/c0a2b57e200e41f4b33af9e2f14a4b861c88811d) maintainers: add konradmalik
* [`20b50b7a`](https://github.com/NixOS/nixpkgs/commit/20b50b7a8f853f209421c8951617b376e2e819b5) jabref: 5.7 -> 5.9
* [`3032954d`](https://github.com/NixOS/nixpkgs/commit/3032954df3660ea74c72e69b42ecb97606c290ad) python310Packages.snapcast: 2.3.1 -> 2.3.2
* [`66b05cfb`](https://github.com/NixOS/nixpkgs/commit/66b05cfb9a00cfd8ec246e9591d5afbea7adca2e) dbmate: 1.16.2 -> 2.0.1
* [`23e0077d`](https://github.com/NixOS/nixpkgs/commit/23e0077d3653757c405a848d07ddbd37507a7ece) fizz: 2023.02.27.00 -> 2023.03.06.00
* [`0ba1c25b`](https://github.com/NixOS/nixpkgs/commit/0ba1c25b620047a8c05cccce308fcb76c25c1780) python310Packages.hvac: 1.0.2 -> 1.1.0
* [`8cab427e`](https://github.com/NixOS/nixpkgs/commit/8cab427e63b126cae4a7067d41e6e0c456b3b1e2) megacmd: 1.5.1 -> 1.6.0
* [`04a5d95d`](https://github.com/NixOS/nixpkgs/commit/04a5d95dbf13ed3776edc7c24927cf76975f37aa) maintainers: add milran
* [`42cda97c`](https://github.com/NixOS/nixpkgs/commit/42cda97c500b54ad2e8617d515cc198a027dceaa) gqlgenc: init at 0.11.3
* [`af13b8f8`](https://github.com/NixOS/nixpkgs/commit/af13b8f8523a6c2f74a207210f30d8c9f54ec3cd) boca: 1.0.6a -> 1.0.7
* [`19f0a78c`](https://github.com/NixOS/nixpkgs/commit/19f0a78c195223e7021ff4d16bad71c6f4cb981d) mpvScripts.uosc: init at 4.6.0
* [`b85c1e31`](https://github.com/NixOS/nixpkgs/commit/b85c1e319e28161044e0ca1a33cdb69310d1e93f) node2nix: pull in patch to fix bin scripts with crlf line-endings
* [`0835e5a1`](https://github.com/NixOS/nixpkgs/commit/0835e5a189bf0ae676ccfd91afaf0e6c39c65b28) nodePackages: regen only node-env
* [`27688662`](https://github.com/NixOS/nixpkgs/commit/2768866261ee21659edc6427f66d5b5b0f613752) nixosTests.pantheon: ensure the password box is focused when login
* [`94ce5a87`](https://github.com/NixOS/nixpkgs/commit/94ce5a875a001d285537a8757fd6e63d6b3f93f3) pkgs/tools/wayland: enable strictDeps
* [`47ace7b0`](https://github.com/NixOS/nixpkgs/commit/47ace7b0af442b2e6bdb8728330622c7dbc81499) pkgs/tools/nix: enable strictDeps
* [`2ba99961`](https://github.com/NixOS/nixpkgs/commit/2ba999615a0a558660a4eb00d42704566223264d) psql2csv: init at 0.12
* [`2f430da1`](https://github.com/NixOS/nixpkgs/commit/2f430da1c6aaeb4306427b77f139f53dcd729e08) Replacing MRAN mirror with posit
* [`22cf9cd0`](https://github.com/NixOS/nixpkgs/commit/22cf9cd0112c9765d99226e38bdce9b7d82fba7d) sfeed: 1.6 -> 1.7
* [`25939765`](https://github.com/NixOS/nixpkgs/commit/25939765180ed716662ed2c441ebe2506202cd8b) csdr: 0.18.0 -> 0.18.1
* [`bd7bc857`](https://github.com/NixOS/nixpkgs/commit/bd7bc857e3da164df6686be04a3cefa6a2a67cc0) matrix-appservice-slack: 2.1.0 -> 2.1.1
* [`bc3335af`](https://github.com/NixOS/nixpkgs/commit/bc3335af8b5aff0c20551b7b5c932ecf83b9e17f) matrix-appservice-slack: add chvp to maintainers
* [`70ec07b9`](https://github.com/NixOS/nixpkgs/commit/70ec07b998ba7bb60f2a2b5872d3b46c72fb052a) haskell.packages.ghc94.aeson: allow quickcheck-instances 0.3.28
* [`7e1bcf5f`](https://github.com/NixOS/nixpkgs/commit/7e1bcf5f38a361828604e68efc98825ee0e060c2) glooctl: 1.13.8 -> 1.13.9
* [`b1e6e553`](https://github.com/NixOS/nixpkgs/commit/b1e6e553faf3276ec478ae47878b0dab19504342) trivial-builders.writeShellApplication: use unwrapped shellcheck
* [`0c370aab`](https://github.com/NixOS/nixpkgs/commit/0c370aab6450244197fcd08814a42cdf560ea973) aws-sso-cli: 1.9.9 -> 1.9.10
* [`937e716d`](https://github.com/NixOS/nixpkgs/commit/937e716d4ea11874fdd6381ced8a93f42f4d7273) python3Packages.sphinxext-opengraph: 0.7.5 -> 0.8.1
* [`8460c8b1`](https://github.com/NixOS/nixpkgs/commit/8460c8b124a00c603ccf1786e1a7d19d58874790) tlaps: migrate to OCaml 4.14
* [`0a11517a`](https://github.com/NixOS/nixpkgs/commit/0a11517a84f5eab2e7d4ef5219325f20cc52653f) act: 0.2.42 -> 0.2.43
* [`5e6ebb3e`](https://github.com/NixOS/nixpkgs/commit/5e6ebb3e898d5dfee032464e54995f2fcb60bdbb) python310Packages.aiolivisi: 0.0.16 -> 0.0.18
* [`8312cc0a`](https://github.com/NixOS/nixpkgs/commit/8312cc0a1f951b8c656b5e8f93578c57e6932045) python310Packages.pyobihai: 1.3.2 -> 1.4.0
* [`9f031004`](https://github.com/NixOS/nixpkgs/commit/9f031004e71fe8cfa4ae1095a50a3afd8cdfe3d5) libdisplay-info: 0.1.0 -> 0.1.1
* [`60446dda`](https://github.com/NixOS/nixpkgs/commit/60446dda1fca1f80876ba16e26b61ec486b377aa) nixos/hydra: wait for network-online before evaluator start
* [`337384d8`](https://github.com/NixOS/nixpkgs/commit/337384d81cc6e47326062cd619445325c756f69b) python310Packages.hvac: add changelog to meta
* [`94ab7a23`](https://github.com/NixOS/nixpkgs/commit/94ab7a2363f730e8fcd92387154ccebcb21b1410) python310Packages.hvac: disable on unsupported Python releases
* [`c0fb30a6`](https://github.com/NixOS/nixpkgs/commit/c0fb30a60e8d2a4de18c0ce53ea6cc8d05f796c9) python310Packages.archinfo: 9.2.40 -> 9.2.41
* [`263f871a`](https://github.com/NixOS/nixpkgs/commit/263f871a627224db5af69ea1e93ef8e76cf577e7) python310Packages.ailment: 9.2.40 -> 9.2.41
* [`8318c658`](https://github.com/NixOS/nixpkgs/commit/8318c658b973ddad416400fa435df09e9a42202f) python310Packages.pyvex: 9.2.40 -> 9.2.41
* [`dd974c57`](https://github.com/NixOS/nixpkgs/commit/dd974c57ac8a0053b1924fa8e2dda87045b301a5) python310Packages.claripy: 9.2.40 -> 9.2.41
* [`7e96ced3`](https://github.com/NixOS/nixpkgs/commit/7e96ced3ea0539cf338136c07b1ccc3da66a0942) python310Packages.cle: 9.2.40 -> 9.2.41
* [`01e6f31e`](https://github.com/NixOS/nixpkgs/commit/01e6f31e561bdf6107dd9f1dbae30e4017d7f9ce) python310Packages.angr: 9.2.40 -> 9.2.41
* [`b4c26395`](https://github.com/NixOS/nixpkgs/commit/b4c263953e0ef0d038002a250aa2b6bcf51bb0e0) python310Packages.python-otbr-api: 1.0.5 -> 1.0.7
* [`c3b9a3e1`](https://github.com/NixOS/nixpkgs/commit/c3b9a3e1f332a4e8b5adc2266a6d568065a195a7) matrix-appservice-irc: 0.37.0 -> 0.37.1
* [`2011b1f0`](https://github.com/NixOS/nixpkgs/commit/2011b1f0030f2f51537a22c5a24beb25ce9326d1) python310Packages.cemm: init at 0.5.1
* [`de134a16`](https://github.com/NixOS/nixpkgs/commit/de134a16be5e6393b8852b4c4aa61bc623c13eb8) chromium: 110.0.5481.177 -> 111.0.5563.64
* [`779db789`](https://github.com/NixOS/nixpkgs/commit/779db7898ca58416f6d1e5bc3c4ed4dafd32879c) go_1_20: 1.20.1 -> 1.20.2
* [`1e36120c`](https://github.com/NixOS/nixpkgs/commit/1e36120c94ad86c19c080e919a84f1ce3d1204e5) signalbackup-tools: 20230305 -> 20230307-1
* [`47276cf4`](https://github.com/NixOS/nixpkgs/commit/47276cf43bcc59e220cf5f95523b3b62d2eac395) ponyc: 0.50.0 -> 0.54.0
* [`5e0eeea8`](https://github.com/NixOS/nixpkgs/commit/5e0eeea8391658f3b138e844e2948423f532c181) pony-corral: 0.6.1 -> unstable-2023-02-11
* [`992b7224`](https://github.com/NixOS/nixpkgs/commit/992b72241df579171f3d3a34c0338fda89c315aa) katawa-shoujo: Add desktop file
* [`43dcf6a2`](https://github.com/NixOS/nixpkgs/commit/43dcf6a240cce10e04ebfde7da6b6f5c4f17ad3f) python310Packages.app-model: 0.1.1 -> 0.1.2
* [`43a3285b`](https://github.com/NixOS/nixpkgs/commit/43a3285b1ee7058cf90db774f169f4d5f48bfe97) kubescape: 2.0.161 -> 2.2.3
* [`2d7bb420`](https://github.com/NixOS/nixpkgs/commit/2d7bb420c8d4bd47bfb8f9b345da7a38ebea78a6) arkade: 0.9.3 -> 0.9.4
* [`8bde91a3`](https://github.com/NixOS/nixpkgs/commit/8bde91a3ab6451c60c426a5f4d840c65d77c9efd) kbibtex: 0.9.3.1 -> 0.9.3.2
* [`4ffa19a0`](https://github.com/NixOS/nixpkgs/commit/4ffa19a0e91bd24c0e93839c4062987f4ddaa633) kubescape: 2.2.3 -> 2.2.4
* [`45a706c5`](https://github.com/NixOS/nixpkgs/commit/45a706c5991d6c305ed7942c7b3ec9e23242342e) python310Packages.prance: 0.21.8.0 -> 0.22.02.22.0
* [`34f4be4a`](https://github.com/NixOS/nixpkgs/commit/34f4be4ad2e7d153f370570ccec8467bec1b23d4) python310Packages.apispec: 6.1.0 -> 6.2.0
* [`c051db62`](https://github.com/NixOS/nixpkgs/commit/c051db62ce639d91f4e039dbc5fc1b090b0a35e8) linvstmanager: init at 1.1.1
* [`938d9f5b`](https://github.com/NixOS/nixpkgs/commit/938d9f5b39bf17b15bc1c52112c135ffc503b4a0) python310Packages.herepy: 3.5.8 -> 3.6.0
* [`cbb6abb8`](https://github.com/NixOS/nixpkgs/commit/cbb6abb8025f2d9503700667810a1289d36f5bf2) python311Packages.fire: fix tests
* [`7018cf78`](https://github.com/NixOS/nixpkgs/commit/7018cf78c618e0a8ec4369c587319f51cb7b19b0) magma: fix for cuda_profiler_api.h for CUDA 11.8+
* [`22c6c560`](https://github.com/NixOS/nixpkgs/commit/22c6c5609143c5714cf7f3028f0f9744b8d27040) opa: migrate to OCaml 4.14
* [`c3dcd58d`](https://github.com/NixOS/nixpkgs/commit/c3dcd58d7ef46075fa5f3aa2a106b98dd636223c) netbird: 0.14.1 -> 0.14.2
* [`a8a12fdf`](https://github.com/NixOS/nixpkgs/commit/a8a12fdf8538e363846af8634b2a663595a8e686) erdtree: 1.2.0 -> 1.3.0
* [`8648885a`](https://github.com/NixOS/nixpkgs/commit/8648885a80194aea9fa20a699c260af357428a76) xc: 0.0.159 -> 0.0.175
* [`2cd53e12`](https://github.com/NixOS/nixpkgs/commit/2cd53e12829b1d80ca79e520cd720ec9bcb51ee0) python310Packages.caldav: 1.2.0 -> 1.2.1
* [`3d647935`](https://github.com/NixOS/nixpkgs/commit/3d647935eb8341ff5d70ce0ef53e00891430fc39) ov: 0.14.2 -> 0.15.0
* [`bfb509e4`](https://github.com/NixOS/nixpkgs/commit/bfb509e45c09585a5fb4c36032b5cfcab65ee9f4) python310Packages.insteon-frontend-home-assistant: 0.3.2 -> 0.3.3
* [`61852b7f`](https://github.com/NixOS/nixpkgs/commit/61852b7faa8b47aad422adca0fea90fe007e9ead) lib: remove deprecated functions
* [`bac160c5`](https://github.com/NixOS/nixpkgs/commit/bac160c5110547662176fe17923f208b5c38ddd0) altair: 5.0.14 -> 5.0.17
* [`194a3801`](https://github.com/NixOS/nixpkgs/commit/194a380161f12b7b720d25527b06292b715ddaf2) nexttrace: init at 1.1.3
* [`5e651fe3`](https://github.com/NixOS/nixpkgs/commit/5e651fe37e98c69121609146ad5240663d0387df) nixos/nexttrace: init
* [`d1ffbed1`](https://github.com/NixOS/nixpkgs/commit/d1ffbed1759054328af3c06a6f49c4e6996bfb7d) qcad: 3.27.9.2 -> 3.27.9.3
* [`392c79de`](https://github.com/NixOS/nixpkgs/commit/392c79dece5491dd62471da85df6adec1edcd29c) terraform-providers.aviatrix: 3.0.1 → 3.0.2
* [`35ebb2dc`](https://github.com/NixOS/nixpkgs/commit/35ebb2dc8341d34b01e5cf5092c29af180925391) terraform-providers.aiven: 4.0.0 → 4.1.0
* [`5f93b977`](https://github.com/NixOS/nixpkgs/commit/5f93b9774eb22fc13275d89a081a0acc14a82ca9) terraform-providers.cloudfoundry: 0.50.4 → 0.50.5
* [`c242f5c8`](https://github.com/NixOS/nixpkgs/commit/c242f5c89d42cef004ea0f8d155121b848b5b764) terraform-providers.cloudamqp: 1.23.0 → 1.24.0
* [`54c038d6`](https://github.com/NixOS/nixpkgs/commit/54c038d693d78fec48eb45ad34c6df14e5907f9c) terraform-providers.datadog: 3.21.0 → 3.22.0
* [`59d19cf0`](https://github.com/NixOS/nixpkgs/commit/59d19cf0a1e47595f4f38db20c00df5c7ef1db80) terraform-providers.okta: 3.42.0 → 3.43.0
* [`75725216`](https://github.com/NixOS/nixpkgs/commit/75725216fd4480420f45ff0437ca408965e7ea93) terraform-providers.mongodbatlas: 1.8.0 → 1.8.1
* [`2369bf3d`](https://github.com/NixOS/nixpkgs/commit/2369bf3d444bfd84a8b31e28ca867618e81d0077) terraform-providers.scaleway: 2.12.0 → 2.12.1
* [`1599fe76`](https://github.com/NixOS/nixpkgs/commit/1599fe767a9636c79b431420a20e0bf44f7e6787) terraform-providers.yandex: 0.85.0 → 0.86.0
* [`b274a380`](https://github.com/NixOS/nixpkgs/commit/b274a380cfec45850b369c31327c02ce36d694da) logcheck: 1.3.23 -> 1.4.2
* [`76c0e3ef`](https://github.com/NixOS/nixpkgs/commit/76c0e3ef55c937f83bbe6ba6543d430d7e6412a9) python310Packages.klein: don't test on multiple cores
* [`fb825182`](https://github.com/NixOS/nixpkgs/commit/fb8251822c6236d95629cfc4800f5eea9ee9932b) libadwaita: 1.2.2 -> 1.2.3
* [`b6b23791`](https://github.com/NixOS/nixpkgs/commit/b6b23791f51d1df6416d9ae713af57ccc8ff271b) pachyderm: 2.5.0 -> 2.5.1
* [`f7f6256d`](https://github.com/NixOS/nixpkgs/commit/f7f6256de8c51bb4aaec38792ef5d93853703ab4) ytt: 0.44.1 -> 0.45.0
* [`41ec7e2f`](https://github.com/NixOS/nixpkgs/commit/41ec7e2fefb0c3b8942cbfc47e579a052bdc5c49) python3Packages.sphinxext-opengraph: add changelog to meta
* [`a35b09be`](https://github.com/NixOS/nixpkgs/commit/a35b09be82e3ecd237791f32a93e9b681ffd553e) audacious: 4.2 -> 4.3
* [`d7a0fc6e`](https://github.com/NixOS/nixpkgs/commit/d7a0fc6e764f1a8cca6532a97b3d228c1f6bec90) amass: 3.21.2 -> 3.22.0
* [`c1d9d8c7`](https://github.com/NixOS/nixpkgs/commit/c1d9d8c7f3e99af8f475730c79cb2ad25b52558e) exploitdb: 2023-03-01 -> 2023-03-06
* [`2a508fbf`](https://github.com/NixOS/nixpkgs/commit/2a508fbf2c3bfd4130d7390b6ff9b1b29ccbbc44) python310Packages.sphinxext-opengraph: disable on unsupported Python releases
* [`d6e7f3fc`](https://github.com/NixOS/nixpkgs/commit/d6e7f3fc7b72a1e9a7616fcd378f4dcfb35cfb9e) rmw: init at 0.9.0
* [`3a38710c`](https://github.com/NixOS/nixpkgs/commit/3a38710c9211940fb7cebb88c1805d1973b6a918) python3Packages.squarify: init at 0.4.3
* [`60709908`](https://github.com/NixOS/nixpkgs/commit/60709908a27fa813022c10838908c979b291ca4c) ocaml: remove obsolete aliases for old versions
* [`8d42f2aa`](https://github.com/NixOS/nixpkgs/commit/8d42f2aa9d5e8d46b968db1a2b5efd7a5531c62e) opam_1_2: drop
* [`3d37d1bc`](https://github.com/NixOS/nixpkgs/commit/3d37d1bcc22837edfe18874a3fe83db6b981bb5c) python310Packages.aioslimproto: 2.1.1 -> 2.2.0
* [`410dfd65`](https://github.com/NixOS/nixpkgs/commit/410dfd651a828131ee0cd6f9a043310b07539db5) python310Packages.aioslimproto: add changelog to meta
* [`bff6d7eb`](https://github.com/NixOS/nixpkgs/commit/bff6d7eb5ec2587a11f022be11900df9ad8a0ea0) fabric-installer: 0.11.1 -> 0.11.2
* [`ffcf148a`](https://github.com/NixOS/nixpkgs/commit/ffcf148a8dd6e8d1e240137e3f8071af5fa92a28) nixos/waybar: allow change waybar package to use
* [`26e14e57`](https://github.com/NixOS/nixpkgs/commit/26e14e57af344f61d8adc37ce4f6f1fe554861bc) nixos/networkd-dispatcher: add rules option
* [`22fd05ad`](https://github.com/NixOS/nixpkgs/commit/22fd05adeeae38dd23be4b4c0ffb18f3f1fd264c) networkd-dispatcher: Add patch support store files
* [`d1323857`](https://github.com/NixOS/nixpkgs/commit/d1323857f853e14b4f45a6f18ae9907065653aff) tilemaker: 2.2.0 → 2.3.0
* [`9796cbfe`](https://github.com/NixOS/nixpkgs/commit/9796cbfe140d00504d7f8ee42a2b19132967608c) linux_xanmod_latest: 6.1.13 -> 6.1.14
* [`c70c23e0`](https://github.com/NixOS/nixpkgs/commit/c70c23e08809f0266076427567d25a8f8bc28764) linux_xanmod: 5.15.89 -> 6.1.15
* [`32af296b`](https://github.com/NixOS/nixpkgs/commit/32af296bbed999d10a5e0f54c1a1ad062b4030dc) linux_xanmod_latest: 6.1.14 -> 6.2.2
* [`ff894f5e`](https://github.com/NixOS/nixpkgs/commit/ff894f5efa5636117d30cf837e29b83f4d8a12bd) typos: 1.13.16 -> 1.13.18
* [`bd7439ef`](https://github.com/NixOS/nixpkgs/commit/bd7439ef8c332465035bba3f564540bf5692513f) xcp: 0.9.3 -> 0.9.4
* [`2f9b913c`](https://github.com/NixOS/nixpkgs/commit/2f9b913c50b0966192b96a857ad2edd534197c31) prismlauncher: use qtWrapperArgs
* [`eb127968`](https://github.com/NixOS/nixpkgs/commit/eb12796851c12259d3a628eda8f8c0a07c455fa9) shadowsocks-v2ray-plugin: 1.3.1 -> 1.3.2
* [`159cf2b7`](https://github.com/NixOS/nixpkgs/commit/159cf2b7dfc881209f6926e7d2ab01b067804cb8) rpm-ostree: 2023.1 -> 2023.2
* [`3374f379`](https://github.com/NixOS/nixpkgs/commit/3374f379ce3021e2add5ead7fed27a3a55f1e09c) media-downloader: 2.8.0 -> 2.9.0
* [`ba4d56e2`](https://github.com/NixOS/nixpkgs/commit/ba4d56e20e434d0ac2f3006d60a549d994b28259) tamarin-prover: install vim-plugin to nvim/site
* [`79c65780`](https://github.com/NixOS/nixpkgs/commit/79c6578005f4eb8cd287a212ff72e0b262ffcf69) fzf: install vim-plugin to nvim/site
* [`78fee034`](https://github.com/NixOS/nixpkgs/commit/78fee034672c1ffe3a570bc8958769a3a784d577) txr: install vim-plugin to nvim/site
* [`4de2b19f`](https://github.com/NixOS/nixpkgs/commit/4de2b19fa184d9c3d5aa158d0923931976441442) boogie: install vim-plugin to nvim/site
* [`b049df00`](https://github.com/NixOS/nixpkgs/commit/b049df0060eb04b93f0b44e18a6a0ac8f6948c4f) html-xml-utils: 8.4 -> 8.5
* [`da95db0a`](https://github.com/NixOS/nixpkgs/commit/da95db0a3a06fda8bd13ff00c3a0a11a6409b3e3) taskwarrior: fix nvim/site installation path
* [`31f52597`](https://github.com/NixOS/nixpkgs/commit/31f52597e5a052ca6e3ea7085cdd59588df47666) charis-sil: 6.101 -> 6.200
* [`28d86311`](https://github.com/NixOS/nixpkgs/commit/28d86311edbdba8588a8e4d6737179faf85726f7) herbstluftwm: fix tests with gcc12
* [`de5d476c`](https://github.com/NixOS/nixpkgs/commit/de5d476c79a274566289b40e9c82b07519d9a3e2) roxctl: 3.73.2 -> 3.73.3
* [`008aeed9`](https://github.com/NixOS/nixpkgs/commit/008aeed915240b6c0a140696b9b440641892bd79) krabby: init at 0.1.6
* [`b23a5794`](https://github.com/NixOS/nixpkgs/commit/b23a5794db78b057cf65cfcd4934a9c2a77aff8d) linux_xanmod: remove LRU option
* [`e8afb655`](https://github.com/NixOS/nixpkgs/commit/e8afb655ba923f0baae5e2b93ed7daf1063a630a) qxmpp: 1.5.1 -> 1.5.2
* [`fd400f54`](https://github.com/NixOS/nixpkgs/commit/fd400f5425f36c49b5592c45866094baeaf88a7f) terracognita: 0.8.1 -> 0.8.2
* [`60ba4760`](https://github.com/NixOS/nixpkgs/commit/60ba476076cd49b050eece5bfaac89720e74b205) vassal: 3.6.13 -> 3.6.14
* [`5b9ed59e`](https://github.com/NixOS/nixpkgs/commit/5b9ed59e80adbf700a76f070556cf3a56e8f1dba) syncthingtray: 1.3.2 -> 1.3.3
* [`a5613d24`](https://github.com/NixOS/nixpkgs/commit/a5613d24efe0d082a23bbb7b828564d843490101) libsForQt5.qtutilities: 6.10.0 -> 6.11.0
* [`c10d18c7`](https://github.com/NixOS/nixpkgs/commit/c10d18c7e74aee0928322ca45087a27ce9183d5d) cpp-utilities: 5.20.0 -> 5.21.0
* [`bfc237b4`](https://github.com/NixOS/nixpkgs/commit/bfc237b4aaf7cd59c838b310fe85f8b4b0f53e62) zfxtop: 0.2.1 -> 0.3.0
* [`afdb49ea`](https://github.com/NixOS/nixpkgs/commit/afdb49eade7af7637688e0a343a6a2e0e6fdad6f) ipfs-cluster: 1.0.5 -> 1.0.6
* [`270c722c`](https://github.com/NixOS/nixpkgs/commit/270c722c89b37b383b144d3d3f4429fbe094fa86) aws-vault: 6.6.2 -> 7.0.0 ([NixOS/nixpkgs⁠#220033](https://github.com/NixOS/nixpkgs/issues/220033))
* [`668f36db`](https://github.com/NixOS/nixpkgs/commit/668f36dbd53aa72348e0187b6d174312ea627b33) ryujinx: 1.1.489 -> 1.1.650
* [`ff048a29`](https://github.com/NixOS/nixpkgs/commit/ff048a29f0565668fd7e9c746f8a57a4b173d9e4) linuxKernel.kernels.linux_zen: 6.2.2-zen1 -> 6.2.2-zen2
* [`41745015`](https://github.com/NixOS/nixpkgs/commit/41745015f68c11694cf7b474db9ccb5de0be6ffa) reaper: 6.75 -> 6.77
* [`ff37d983`](https://github.com/NixOS/nixpkgs/commit/ff37d983b0e343dab0a69ae0602433cdafb13958) linuxKernel.kernels.linux_lqx: 6.1.14-lqx1 -> 6.1.15-lqx2
* [`29da1234`](https://github.com/NixOS/nixpkgs/commit/29da123428dd71f553f8effe28d284d8d57b080b) offpunk: 1.8->1.9
* [`be521607`](https://github.com/NixOS/nixpkgs/commit/be5216077e2ed22cde9af456f90cf0cfdf0358fe) offpunk: install the project's man page
* [`978b7cfd`](https://github.com/NixOS/nixpkgs/commit/978b7cfd6046a8611aeb429ca27cfc886eb91a17) go-licenses: init at 1.6.0
* [`b3fff4bf`](https://github.com/NixOS/nixpkgs/commit/b3fff4bf0fb0f6560ab3c688b05ce6bd52d5f876) marksman: 2023-01-29 -> 2023-03-04
* [`76657296`](https://github.com/NixOS/nixpkgs/commit/76657296600b57277016389a8daa96342e77df06) flyctl: 0.0.477 -> 0.0.478
* [`8e2f599e`](https://github.com/NixOS/nixpkgs/commit/8e2f599ef9110963eee673946f9f887e85f56ae9) mixxx: 2.3.3 -> 2.3.4
* [`79394fd6`](https://github.com/NixOS/nixpkgs/commit/79394fd6901b04c75465b855146f771079033de4) opcr-policy: 0.1.50 -> 0.1.51
* [`084ddae9`](https://github.com/NixOS/nixpkgs/commit/084ddae98b080245249f6ea3a5d9f319ae1877e1) python312: 3.12.0a5 -> 3.12.0a6
* [`a259a281`](https://github.com/NixOS/nixpkgs/commit/a259a28151bc4f8036ad8f63fa36b1c8da485c62) step-kms-plugin: init at 0.7.0
* [`ff28bb10`](https://github.com/NixOS/nixpkgs/commit/ff28bb10554a2e967cde4b5183e0fe02b8c5f8a7) asusctl: 4.5.6 -> 4.5.8
* [`d8d8b55e`](https://github.com/NixOS/nixpkgs/commit/d8d8b55e7dccfe10e99d2f4ed968fa8acaef9b78) nixos/murmur: expose dbus
* [`3d8632ab`](https://github.com/NixOS/nixpkgs/commit/3d8632ab47db91f79703f10c0dfb98bd8273013f) phpunit: 10.0.11 -> 10.0.14
* [`9e5e7780`](https://github.com/NixOS/nixpkgs/commit/9e5e77806a692277da477ca1879e24789350911e) circt: 1.30.0 -> 1.34.0
* [`f421180f`](https://github.com/NixOS/nixpkgs/commit/f421180fa56be1fbc5ce26191ac230ea45dd58c8) discord-canary: 0.0.148 -> 0.0.149
* [`4d40a028`](https://github.com/NixOS/nixpkgs/commit/4d40a028a1f3795e0b8257cab781c8827123abf5) rtorrent: set meta.mainProgram
* [`faa92cd3`](https://github.com/NixOS/nixpkgs/commit/faa92cd30b1079e76b99716aa92df7cc5c552dd6) pkgsCross.ghcjs.haskellPackages.ghc: formally disable shared libs
* [`471b9cab`](https://github.com/NixOS/nixpkgs/commit/471b9cab41b218080f5e9f4abbc83eaaa60c6abf) haskell.compiler.ghcHEAD: 9.7.20221224 -> 9.7.20230217
* [`23dc76fd`](https://github.com/NixOS/nixpkgs/commit/23dc76fd2248d51625f3375d506416415dfba7d6) haskell.compiler.ghcHEAD: fix hadrianFlagsArray handling
* [`97d55ec9`](https://github.com/NixOS/nixpkgs/commit/97d55ec923b0cd3798a6a84e2e0a6b2c6b54f6a9) haskell.compiler.ghcHEAD: drop malformed/redundant hadrian setting
* [`afeb316d`](https://github.com/NixOS/nixpkgs/commit/afeb316dc36c7f104ea43045d77745ab0705c873) wakapi: 2.6.1 -> 2.6.2
* [`64eb9216`](https://github.com/NixOS/nixpkgs/commit/64eb9216d9be5c4239121619d8828b5249b7947f) sarasa-gothic: 0.40.1 -> 0.40.2
* [`9f747c87`](https://github.com/NixOS/nixpkgs/commit/9f747c87f8570f4713f9adb5d1c539e9b25cfb83) qpdf: 11.2.0 -> 11.3.0
* [`30c16853`](https://github.com/NixOS/nixpkgs/commit/30c168537c08c60454ada54db259bdf7cd300b6c) numix-icon-theme-circle: 23.02.28 -> 23.03.04
* [`53d3317f`](https://github.com/NixOS/nixpkgs/commit/53d3317f6d43e3759f4eef365c6a8dfe099570ff) vscode-extensions.ionide.ionide-fsharp: 6.0.5 -> 7.5.1
* [`7dcc825f`](https://github.com/NixOS/nixpkgs/commit/7dcc825f2833465abfdab103bae84b39edfb8d70) openai-whisper-cpp: 1.2.0 -> 1.2.1
* [`f3acb36d`](https://github.com/NixOS/nixpkgs/commit/f3acb36d6407ba549d7bf660ceec7572700f8cc9) proton-caller: 3.1.1 -> 3.1.2
* [`cc53194f`](https://github.com/NixOS/nixpkgs/commit/cc53194fbd775345ae3afee98a827630c2310dc9) python310Packages.pyinsteon: 1.3.3 -> 1.3.4
* [`4e04af68`](https://github.com/NixOS/nixpkgs/commit/4e04af68ea0029237ba55437a869f4de5a03cdf0) home-assistant: 2023.3.1 -> 2023.3.2
* [`ad075bd9`](https://github.com/NixOS/nixpkgs/commit/ad075bd91580666d97ad5125d78c7c5cd32403c4) viceroy: init at 0.3.5
* [`70fa4c65`](https://github.com/NixOS/nixpkgs/commit/70fa4c65696495be22bce506accfca52310f476b) haste-server: ccc5049b07e9f90ec19fc2a88e5056367c53e202 -> b52b394bad909ddf151073987671e843540d91d6
* [`2a7bd670`](https://github.com/NixOS/nixpkgs/commit/2a7bd670fca94169b09c3b966f05ab497e4accfe) cargo-all-features: 1.6.0 -> 1.7.0
* [`4c62f1c7`](https://github.com/NixOS/nixpkgs/commit/4c62f1c7837c7825ce8844b66d000dffd40757d5) maintainers: add longer
* [`e8d6cef1`](https://github.com/NixOS/nixpkgs/commit/e8d6cef1036d4750fa71c092958d8b78314022c5) kubernetes-polaris: init at 7.3.2
* [`f7882319`](https://github.com/NixOS/nixpkgs/commit/f7882319e35a97aa6e5baf618b7b1ed6257876f9) process-viewer: 0.5.6 -> 0.5.8
* [`1312c2db`](https://github.com/NixOS/nixpkgs/commit/1312c2db133b9473a12990ac6051541df0dd81b6) super-productivity: 7.12.2 -> 7.13.1
* [`4bc7e7bd`](https://github.com/NixOS/nixpkgs/commit/4bc7e7bd5d92a9ff3776c7ab2d31c4ef9bec21ec) pulumi-bin: 3.55.0 -> 3.56.0
* [`2f4ea5fa`](https://github.com/NixOS/nixpkgs/commit/2f4ea5fab6dda0199cb5e65d85b5af2eed4de14d) privoxy: 3.0.33 -> 3.0.34
* [`96e08120`](https://github.com/NixOS/nixpkgs/commit/96e0812048ea638686a700dbfd92989456160c27) scaleway-cli: 2.11.1 -> 2.12.0
* [`f12b8acc`](https://github.com/NixOS/nixpkgs/commit/f12b8acc1f945554b25627983113ac4cba970e8a) snappymail: 2.26.3 -> 2.26.4
* [`8853df99`](https://github.com/NixOS/nixpkgs/commit/8853df99bce7498a4bbad5c682097371c60d4bc0) fq: 0.3.0 -> 0.4.0
* [`95b53814`](https://github.com/NixOS/nixpkgs/commit/95b53814cdd8998d504887c445e689089a77d7ad) exploitdb: 2023-03-06 -> 2023-03-08
* [`29c84e0d`](https://github.com/NixOS/nixpkgs/commit/29c84e0d6a21fa22c1da464d2575378af3a6daa7) trufflehog: 3.28.7 -> 3.29.0
* [`1480cd40`](https://github.com/NixOS/nixpkgs/commit/1480cd40981da3986ead8ea0554eb13c47515127) ocamlPackages.merlin: 4.7 → 4.8
* [`91062888`](https://github.com/NixOS/nixpkgs/commit/910628885ca2e638aca003a0d9cff75890460ca8) hipsparse: 5.4.2 -> 5.4.3
* [`239b496f`](https://github.com/NixOS/nixpkgs/commit/239b496fa5179d67536813017860fdb93caef751) g2o: 20201223 -> 20230223
* [`856936ab`](https://github.com/NixOS/nixpkgs/commit/856936abc863e1f9b95368c4ac300b0ac82c4e03) buildRustCrate: add libiconv to nativeBuildInputs on darwin
* [`b4990c98`](https://github.com/NixOS/nixpkgs/commit/b4990c9891e53aabb22504504d890e41f745540d) wasmtime: 6.0.0 -> 6.0.1
* [`b3208451`](https://github.com/NixOS/nixpkgs/commit/b3208451ef21d45ec80eea7fb456fc1d00c64e56) open-pdf-sign: 0.1.3 -> 0.1.4
* [`c4d1f2b7`](https://github.com/NixOS/nixpkgs/commit/c4d1f2b78ca6fc3d23d66be591e4c2d02f31faed) python310Packages.lcgit: init at 0.2.0
* [`b1455c8c`](https://github.com/NixOS/nixpkgs/commit/b1455c8cf4326efc4d0ff59d4c1f287718fc3938) python10Packages.ldapdomaindump: add toPythonApplication
* [`4b0d54ef`](https://github.com/NixOS/nixpkgs/commit/4b0d54ef6d73f410be0358fa9d33154759a9fc7b) kubernetes-helm: 3.11.1 -> 3.11.2
* [`64a0faa7`](https://github.com/NixOS/nixpkgs/commit/64a0faa70032bf4401e80dba27a9c76d681c8934) erigon: 2.39.0 -> 2.40.1
* [`36e5e6be`](https://github.com/NixOS/nixpkgs/commit/36e5e6be647356dcd6b9aa0dd31187135af40d17) redpanda: 22.3.13 -> 23.1.1
* [`e4341d36`](https://github.com/NixOS/nixpkgs/commit/e4341d36239a78b6ca66adc683a61b467b1c93dd) python3Packages.imageio: 2.25.0 -> 2.26.0
* [`cbbc0750`](https://github.com/NixOS/nixpkgs/commit/cbbc0750671cf816cbaf1cde38c7eef075f5c45b) chromiumDev: 112.0.5615.12 -> 112.0.5615.20
* [`d4a78d5f`](https://github.com/NixOS/nixpkgs/commit/d4a78d5f094e0c837b9104f0cd3a4fb2cf966932) texlive: add test for lualatex fonts
* [`a6f6ec73`](https://github.com/NixOS/nixpkgs/commit/a6f6ec738bd03e99cf4efe8553dbe71f25e3cc5f) tabnine: 4.4.245 -> 4.4.265
* [`9ce2e1a4`](https://github.com/NixOS/nixpkgs/commit/9ce2e1a4153746a5b92d5e10858d306e896594af) python310Packages.homeassistant-stubs: Relax home-assistant version
* [`8fbdc129`](https://github.com/NixOS/nixpkgs/commit/8fbdc12942691a7aa5b5b195b1c0c1924ca49c36) terraform: 1.3.9 -> 1.4.0
* [`0701506b`](https://github.com/NixOS/nixpkgs/commit/0701506bf12ecdbec8852f541c4cf47f7b9c015c) codespell: 2.2.2 -> 2.2.4
* [`6d9f07d8`](https://github.com/NixOS/nixpkgs/commit/6d9f07d8fe1b965e9dffdda2ac9638347e8b9bd9) librclone: init at 1.61.1
* [`ea0070a5`](https://github.com/NixOS/nixpkgs/commit/ea0070a5189adcd3e16bd15f0609d34b5abbbcfe) celeste: init at 0.4.6
* [`374fc068`](https://github.com/NixOS/nixpkgs/commit/374fc068ec1fe11c9f638f5fbf1d5cadb855f938) nixos/systemd-oomd: disable systemd-oomd when enableUnifiedCgroupHierarchy is false
* [`bb9b8682`](https://github.com/NixOS/nixpkgs/commit/bb9b8682d526e193e254db8d3b35832c91d6219e) python310Packages.vsure: 2.6.0 -> 2.6.1
* [`55544a3f`](https://github.com/NixOS/nixpkgs/commit/55544a3fd9ec7b018281b20ec0b0c8f29a1b46c3) gh: 2.23.0 -> 2.24.0
* [`637092b8`](https://github.com/NixOS/nixpkgs/commit/637092b8e755f1ee0368016a41f284d22c43f519) intel-compute-runtime: 22.49.25018.24 -> 23.05.25593.11
* [`0572ebb4`](https://github.com/NixOS/nixpkgs/commit/0572ebb43558c8a43c8f209fbdc14d2a2ef0559a) python3Packages.types-ujson: init at 5.7.0.1
* [`ca29761e`](https://github.com/NixOS/nixpkgs/commit/ca29761ef5bc38947d9048b6dc8f3e8c795b6a34) gitlint: 0.18.0 -> 0.19.0
* [`61dcd439`](https://github.com/NixOS/nixpkgs/commit/61dcd43981dccd6b7002031164a288e5db35dfbb) seer: 1.14 -> 1.15
* [`0e3e5f3c`](https://github.com/NixOS/nixpkgs/commit/0e3e5f3c7c97054df06969cc95b352dbcd199d7b) automatic-timezoned: 1.0.68 -> 1.0.69
* [`fe5b3c3e`](https://github.com/NixOS/nixpkgs/commit/fe5b3c3e2d0216796caa875dd85eb52b32aaae00) avalanchego: 1.9.10 -> 1.9.11
* [`b3189634`](https://github.com/NixOS/nixpkgs/commit/b3189634581d204b3c927f1033771cb964fc612f) ssh-to-age: 1.1.1 -> 1.1.2
* [`da14e930`](https://github.com/NixOS/nixpkgs/commit/da14e930c3fd0fc0def8da6ec25cab0b31f964a0) skaffold: 2.1.0 -> 2.2.0
* [`e3a07ea7`](https://github.com/NixOS/nixpkgs/commit/e3a07ea75239a62a26c14ad2672737949af8a50c) gh: 2.24.0 -> 2.24.1
* [`fb4e70b0`](https://github.com/NixOS/nixpkgs/commit/fb4e70b0dcba920df9075254a2a8282b0d30e335) python310Packages.fritzconnection: 1.11.0 -> 1.12.0
* [`2b315453`](https://github.com/NixOS/nixpkgs/commit/2b315453e949af18c900a461cec02892d5a08a00) kodi: 19.4 -> 20.0
* [`0c3c47ab`](https://github.com/NixOS/nixpkgs/commit/0c3c47ab7a8ae1032d5243271365f97bd7698ddc) kodi.packages.inputstream-adaptive: 19.0.7 -> 20.3.2
* [`b520a0cb`](https://github.com/NixOS/nixpkgs/commit/b520a0cb51c268cc332d11b966ee91d465f143f2) kodi.packages.inputstream-ffmpegdirect: 19.0.3 -> 20.5.0
* [`2e3ba1bd`](https://github.com/NixOS/nixpkgs/commit/2e3ba1bda16c9239c444f60ae8368e5be126a096) kodi.packages.inputstream-rtmp: 19.0.1 -> 20.3.0
* [`2ce5a0b1`](https://github.com/NixOS/nixpkgs/commit/2ce5a0b109f1f188c0f86d0bc70289baf53277ef) kodi.packages.joystick: 19.0.1 -> 20.1.0
* [`a3cfb815`](https://github.com/NixOS/nixpkgs/commit/a3cfb8157ffd7ba5534a19721bd1a2c456264a63) kodi.packages.libretro: 19.0.0 -> 20.1.0
* [`c81978e7`](https://github.com/NixOS/nixpkgs/commit/c81978e775867750089b88cbf5e81fe6ba61acd6) kodi.packages.pvr-hdhomerun: 19.1.0 -> 20.4.0
* [`057fd517`](https://github.com/NixOS/nixpkgs/commit/057fd517e710ecf309b63c366c00e0c268b5fad2) kodi.packages.pvr-hts: 19.0.6 -> 20.6.0
* [`7771fe5b`](https://github.com/NixOS/nixpkgs/commit/7771fe5b2191aa97b3745071cc9ef60ace004a2e) kodi.packages.pvr-iptvsimple: 19.2.2 -> 20.6.1
* [`59cb0b24`](https://github.com/NixOS/nixpkgs/commit/59cb0b24577153ce8137f69b3b4efac404d747c0) kodi.packages.vfs-libarchive: 19.0.1 -> 20.1.0
* [`9aa1e31a`](https://github.com/NixOS/nixpkgs/commit/9aa1e31af8c19ab890b4e45616cb38e53378da3d) kodi.packages.vfs-sftp: 19.0.1 -> 20.1.0
* [`7d272783`](https://github.com/NixOS/nixpkgs/commit/7d2727838a8d31fbb4f1339cfc68be75fed144b8) kodi.packages.visualization-waveform: 19.0.3 -> 20.2.1
* [`eae456ae`](https://github.com/NixOS/nixpkgs/commit/eae456ae09ed029506466c09dab7d1108d7b061e) kodi.packages.steam-controller: 0.11.0 -> 20.0.2
* [`e9da3a88`](https://github.com/NixOS/nixpkgs/commit/e9da3a88e81c2272f23290dbbb73f953e30c6c15) firefox-devedition-bin-unwrapped: 111.0b7 -> 111.0b8
* [`78ac44af`](https://github.com/NixOS/nixpkgs/commit/78ac44af766f967a2c9dfb88d13688729fba4595) parallel: 20221222 -> 20230222
* [`9e6a70d0`](https://github.com/NixOS/nixpkgs/commit/9e6a70d060a2bd7ea328cb7aa29bad10456a3d2d) zoom-us: 5.13.10.1208 -> 5.13.11.1288
* [`0397322d`](https://github.com/NixOS/nixpkgs/commit/0397322d80da4a9ee117bde84b8de9e6cce88e22) python310Packages.txi2p-tahoe: init at 0.3.7
* [`3d3db646`](https://github.com/NixOS/nixpkgs/commit/3d3db646809dc690ea676a5ce2baeae7167eb0ed) python310Packages.foolscap: 21.7.0 -> 23.3.0
* [`a6561d82`](https://github.com/NixOS/nixpkgs/commit/a6561d8237921e552b2cea4c05b74bb0b8a98ddf) cppcheck: 2.10.1 -> 2.10.2
* [`95712a73`](https://github.com/NixOS/nixpkgs/commit/95712a7325653631ecf97ab1f18c8101162815ff) cargo-deb: 1.42.1 -> 1.42.2
* [`0c0fe2e9`](https://github.com/NixOS/nixpkgs/commit/0c0fe2e9f14387595f8297cfe6352bccf842b5ad) terraform-providers.cloudflare: 4.0.0 → 4.1.0
* [`991dd6bf`](https://github.com/NixOS/nixpkgs/commit/991dd6bf2a992bd416b9fae69bdbea38c5e4c043) terraform-providers.local: 2.3.0 → 2.4.0
* [`5a79b956`](https://github.com/NixOS/nixpkgs/commit/5a79b9562ff77f1faf04e4a62c0641dbd71eee42) terraform-providers.scaleway: 2.12.1 → 2.13.0
* [`b6f45b0f`](https://github.com/NixOS/nixpkgs/commit/b6f45b0f3198b2ed8ea7d694d1a2e736e0907963) terraform-providers.spotinst: 1.103.0 → 1.104.0
* [`9d48f500`](https://github.com/NixOS/nixpkgs/commit/9d48f5009d59612000c198801d1f03e960a656c1) terraform-providers.oci: 4.110.0 → 4.111.0
* [`a71e4596`](https://github.com/NixOS/nixpkgs/commit/a71e45961e88c8a6dde6287fa1e061f30f8c2fb7) terraform-providers.tencentcloud: 1.79.13 → 1.79.14
* [`897a7425`](https://github.com/NixOS/nixpkgs/commit/897a7425e3bfc73d12a550e16b6ca8882f22e91d) add penalty1083 as maintainer
* [`6f7320ac`](https://github.com/NixOS/nixpkgs/commit/6f7320ac806b262e5e23df79530105b72335787a) geph: init at 4.7.8
* [`b6124a62`](https://github.com/NixOS/nixpkgs/commit/b6124a6283041411fc8454d5800af499ad82fe94) xemu: 0.7.84 -> 0.7.85
* [`47d453b7`](https://github.com/NixOS/nixpkgs/commit/47d453b770cd91efc11ee95eca59577e502900d8) waybox: unstable-2021-04-07 -> 0.2.0
* [`6e825d6f`](https://github.com/NixOS/nixpkgs/commit/6e825d6f548078e07f585d0002559361b2ebc969) sentry-cli: 2.14.3 -> 2.14.4
* [`1ce566b2`](https://github.com/NixOS/nixpkgs/commit/1ce566b2ac50a1077c1d6fb13c44b414946996a2) berglas: 1.0.1 -> 1.0.2
* [`4fb55b05`](https://github.com/NixOS/nixpkgs/commit/4fb55b055dd0d2ca3500b200de2446d842c7d128) ocamlPackages.mirage-fs: use Dune 3
* [`099dccdd`](https://github.com/NixOS/nixpkgs/commit/099dccddc9b02f23a8434e75f7c6480a9e554217) ocamlPackages.mirage-kv: 3.0.1 → 4.0.1
* [`6bbf9ab1`](https://github.com/NixOS/nixpkgs/commit/6bbf9ab16673f8cd656dcca7adef16f06a980125) syncstorage-rs: 0.13.5 -> 0.13.6
* [`cac6d5d8`](https://github.com/NixOS/nixpkgs/commit/cac6d5d8624a190b558eab1fe6029fd216cd289f) wakatime: 1.68.1 -> 1.68.3
* [`e7fe48e8`](https://github.com/NixOS/nixpkgs/commit/e7fe48e8020eab609f59da6b94b26e3a8205a154) airgeddon: 11.10 -> 11.11
* [`3b72d405`](https://github.com/NixOS/nixpkgs/commit/3b72d40509f1d4000cd49292198d7f49eb7cda46) halide: 14.0.0 -> 15.0.0
* [`a58940b3`](https://github.com/NixOS/nixpkgs/commit/a58940b35c31325588802fa70901dc9b290e864b) python310Packages.homeassistant-stubs: 2023.3.1 -> 2023.3.2
* [`dbff810d`](https://github.com/NixOS/nixpkgs/commit/dbff810de84422b5e1351c3d534fbcb5181fe561) ttdl: 3.6.3 -> 3.6.5
* [`bcddd70e`](https://github.com/NixOS/nixpkgs/commit/bcddd70e030d36663ab45a332869f93bc7a1ab17) metal-cli: 0.13.0 -> 0.14.1
* [`5e1088a0`](https://github.com/NixOS/nixpkgs/commit/5e1088a0d4592dd1eeaed63c86e30ca0b1db6634) jaq: 0.9.0 -> 0.10.0
* [`ae09bc0f`](https://github.com/NixOS/nixpkgs/commit/ae09bc0fd305623089d9086ff7802b9a8f4b3d7b) airgeddon: add changelog to meta
* [`48dad033`](https://github.com/NixOS/nixpkgs/commit/48dad033bbbd540fa0e397efd0175ab1ce522dd6) python310Packages.aioairzone: 0.5.2 -> 0.5.3
* [`9984b263`](https://github.com/NixOS/nixpkgs/commit/9984b263bf82339258d405d4e7754df669384eab) exploitdb: 2023-03-08 -> 2023-03-09
* [`88e9562f`](https://github.com/NixOS/nixpkgs/commit/88e9562f2c4027dd961e55b084877be2c1750fe0) python310Packages.peaqevcore: 12.2.7 -> 13.0.0
* [`6cbc7d98`](https://github.com/NixOS/nixpkgs/commit/6cbc7d9832e977099270619396270f19fef07ea2) python310Packages.pymazda: 0.3.7 -> 0.3.8
* [`9fd32c52`](https://github.com/NixOS/nixpkgs/commit/9fd32c52cc4c26009da39236831819ea16a084ed) python310Packages.identify: 2.5.18 -> 2.5.19
* [`2e61c703`](https://github.com/NixOS/nixpkgs/commit/2e61c703f29259d23fb796813ed04867d3caadaf) python310Packages.rns: 0.4.9 -> 0.5.0
* [`3da4f828`](https://github.com/NixOS/nixpkgs/commit/3da4f828a0533cfcdc75a449963d7d552f84303e) python310Packages.scmrepo: 0.1.13 -> 0.1.15
* [`c3a06e83`](https://github.com/NixOS/nixpkgs/commit/c3a06e83b0e1ac04ae0521ca8bbd7cf3d0845cd3) kafkactl: 3.0.3 -> 3.1.0
* [`de470781`](https://github.com/NixOS/nixpkgs/commit/de4707810d0eb970b073ce584906b9752b2d1971) python310Packages.screenlogicpy: 0.8.0 -> 0.8.1
* [`88e884b0`](https://github.com/NixOS/nixpkgs/commit/88e884b06f09cb3faeefdf78ceabe40c5a151b06) kafkactl: add changelog to meta
* [`16bddcfb`](https://github.com/NixOS/nixpkgs/commit/16bddcfbaf8f1942168a553be64a574c635b4622) cri-o: 1.26.1 -> 1.26.2
* [`7c88c18a`](https://github.com/NixOS/nixpkgs/commit/7c88c18a082c20a2ab556488615626c01fac534f) qdrant: 1.0.2 -> 1.0.3
* [`d6e52d26`](https://github.com/NixOS/nixpkgs/commit/d6e52d26b092036423beb029e67283e6fa9c4768) shell-genie: specify license
* [`2aa99214`](https://github.com/NixOS/nixpkgs/commit/2aa9921403ddc795344a3af7f891ddde7f48bc83) datree: 1.8.33 -> 1.8.36
* [`4d15fb3a`](https://github.com/NixOS/nixpkgs/commit/4d15fb3ade85275b6a1404644ef339b7fdd713e4) nixos/tests/installer.nix: fix hydra eval
* [`639825c9`](…
github-actions bot added a commit to bentoml/plugins that referenced this pull request Mar 15, 2023
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/nixpkgs@1eeea1f1...1c03223e](https://github.com/NixOS/nixpkgs/compare/1eeea1f1922fb79a36008ba744310ccbf96130e2...1c03223e5c1cf29a349a47ddf76f14806c048852)

* [`e9ad0246`](https://github.com/NixOS/nixpkgs/commit/e9ad02461516d74b3e53c5fde55bd41f104dcad5) xen: move patches specific for 4.10
* [`2f40c464`](https://github.com/NixOS/nixpkgs/commit/2f40c4647b1bf46abded4136075ea47533906fcb) xen: upgrade to 4.15
* [`9591c917`](https://github.com/NixOS/nixpkgs/commit/9591c9170fd20966e6a5e6f108bc4d4f19fcd25d) xen: bump to 4.15.1
* [`93437909`](https://github.com/NixOS/nixpkgs/commit/93437909af24b6728e447ffbeaef7923f8814f3c) xen: patch 4.15 with XSA-386
* [`f82ceb1c`](https://github.com/NixOS/nixpkgs/commit/f82ceb1c489cf552e668e5a6411ae60a4a475fd6) python310Packages.dvc-http: init at 0.0.1
* [`51ba2337`](https://github.com/NixOS/nixpkgs/commit/51ba23371779e1018fc89573f94ca414c09c4e61) pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32
* [`efbeb1bb`](https://github.com/NixOS/nixpkgs/commit/efbeb1bb5e90ab3ca2d5184e446cea4fa97c29cb) prometheus-cpp: 1.0.1 -> 1.1.0
* [`57b09f29`](https://github.com/NixOS/nixpkgs/commit/57b09f29c6345f0ca701b79760dfd23443c3a982) vscode-extensions.jellyedwards.gitsweep: init at 0.0.15
* [`00ae655e`](https://github.com/NixOS/nixpkgs/commit/00ae655e639e620ee5dcfd6f1bd9ccb4e337eea1) btrbk: Use sudo or doas based on configuration
* [`3144b00d`](https://github.com/NixOS/nixpkgs/commit/3144b00d2486ca5d85098a688a76a5e945de411d) btrbk: add doas variant of module test
* [`9a848178`](https://github.com/NixOS/nixpkgs/commit/9a8481780b31e101dc941a3d619ce4803dc5d525) libsForQt515.solid: patch binary search paths
* [`a7ea3911`](https://github.com/NixOS/nixpkgs/commit/a7ea3911798120047beb25be107138a0c547dce2) swww: init at 0.5.0
* [`61840f71`](https://github.com/NixOS/nixpkgs/commit/61840f7181bc17f3c808fcae5acc656a2408ab7b) nixos/prometheus: Add new relabel_configs actions
* [`1f9b92b0`](https://github.com/NixOS/nixpkgs/commit/1f9b92b0e6f2dd073f1863d95fd6587448415214) fetchdarcs: fetch by commit hash
* [`67253945`](https://github.com/NixOS/nixpkgs/commit/67253945376ed8ac3dc166c5b3c469cd53deb4e9) maintainers: add cbleslie
* [`a8cfa9b5`](https://github.com/NixOS/nixpkgs/commit/a8cfa9b5a306f7ad0d1df1bed9a649530f6c78e8) monitorcontrol: init at 4.1.0
* [`f88873d8`](https://github.com/NixOS/nixpkgs/commit/f88873d877d17617ed11a8f6aba49db9ae57cdbb) runelite: 2.1.5 -> 2.5.0
* [`d8b19108`](https://github.com/NixOS/nixpkgs/commit/d8b19108efad3992384606dd9afda5cadf195ea1) goku: 0.5.2 -> 0.6.0, fix deps, add aarch64
* [`2f8266e0`](https://github.com/NixOS/nixpkgs/commit/2f8266e02234a6a2e2ce2b939366e63b5369c278) sonic-pi: add updateScript
* [`5988ada8`](https://github.com/NixOS/nixpkgs/commit/5988ada8358cb66b5486889db22aba37caaf4f4c) sonic-pi: add ruby to nativeBuildInputs
* [`0bc74963`](https://github.com/NixOS/nixpkgs/commit/0bc74963f09dc60aefb151d539402dcf5d2833b0) zoneminder: 1.36.28 -> 1.36.32
* [`4c64355f`](https://github.com/NixOS/nixpkgs/commit/4c64355fa3f48800ec36ef0b8c41dd5bcb895d6e) nixos/zoneminder: also run zmupdate "freshen" on start
* [`8093c136`](https://github.com/NixOS/nixpkgs/commit/8093c136a2fadb81a6bc629a33827ed4c39ed55e) nixos/zoneminder: requires `sysvsem` PHP extension
* [`86b48684`](https://github.com/NixOS/nixpkgs/commit/86b48684bb028e551bf6c876d0a0668532ea2f4f) nixos/zoneminder: automatically update Nix store path in config DB
* [`e7383a32`](https://github.com/NixOS/nixpkgs/commit/e7383a32e365371b9d62c30f16089687db7cb5d4) gitlab-pages: Maintain together with the rest of GitLab + add to...
* [`06166c8c`](https://github.com/NixOS/nixpkgs/commit/06166c8c7036fc2df964acd53c60fe0e3b8bcbb6) python3Packages.json-stream-rs-tokenizer: init at 0.4.13
* [`195600bc`](https://github.com/NixOS/nixpkgs/commit/195600bc7e7af3d62867f4729a67271d52148b5c) python3Packages.json-stream: 1.5.1 -> 2.1.1
* [`baf1f129`](https://github.com/NixOS/nixpkgs/commit/baf1f1293b289ce53d9b660465cd68e1a3e00b96) ruby: Fix withPackages on darwin with makeBinaryWrapper
* [`9fdd9729`](https://github.com/NixOS/nixpkgs/commit/9fdd97298b6b8b0a8385ada8b81d9d1d56ed7c34) nixos/java: add binfmt option
* [`e31dea3d`](https://github.com/NixOS/nixpkgs/commit/e31dea3d14e72a445db2c9b22f4ea005c36a5c85) python3Packages.parsimonious: disable benchmark tests that may fail
* [`dbd563b9`](https://github.com/NixOS/nixpkgs/commit/dbd563b9b8c20071075bcdd5912b99486b3fcfa3) nixos/gitlab: Improve support for GitLab Pages
* [`2d4f4e9b`](https://github.com/NixOS/nixpkgs/commit/2d4f4e9bdfdcc69ea19299150db5c26c7aa4e44a) nixos/gitlab: Handle secrets in GitLab Pages config
* [`678eed32`](https://github.com/NixOS/nixpkgs/commit/678eed323ffd90117472cd432ebe85dddaff07f1) nixos/grub: Name initrd-secrets by system, not by initrd
* [`b90cf061`](https://github.com/NixOS/nixpkgs/commit/b90cf0612e5963849d0dfe22e95debe834e9abde) nixos/atop: Remove upgraded logfiles if not replaced
* [`95c17b8e`](https://github.com/NixOS/nixpkgs/commit/95c17b8e72da5b9b668a6fa69cc6ee73151b8d8d) lout: 3.40 -> 3.42.2
* [`218c7795`](https://github.com/NixOS/nixpkgs/commit/218c7795a669d577fc3ae79a571135e5f105793a) nixos/cgit: init
* [`45f06d97`](https://github.com/NixOS/nixpkgs/commit/45f06d9712bdd6ee8084065bbd0776d73982fd6e) nixos/cgit: add package option
* [`6f63865c`](https://github.com/NixOS/nixpkgs/commit/6f63865cf470ce99b36bceacbefbb6886d05be51) dockerTools: Add minimal test case for [NixOS/nixpkgs⁠#214434](https://github.com/NixOS/nixpkgs/issues/214434)
* [`f4e4cac0`](https://github.com/NixOS/nixpkgs/commit/f4e4cac0c86f0e16aac773083aebbfc0e7daea43) dockerTools: Correctly unpack duplicate rootfs diffs
* [`9377f94a`](https://github.com/NixOS/nixpkgs/commit/9377f94ac5c69eaeca0a2a9d13a41ea7f41c0b7d) swww: v0.5.0 -> v0.7.0
* [`a124a517`](https://github.com/NixOS/nixpkgs/commit/a124a517b2e66078143beaae058e394aa5c1acc0) Update pkgs/tools/wayland/swww/default.nix
* [`2a5bf1fc`](https://github.com/NixOS/nixpkgs/commit/2a5bf1fcdfc8658678bc9305677dfa0fda907367) Update pkgs/tools/wayland/swww/default.nix
* [`2bf1fca5`](https://github.com/NixOS/nixpkgs/commit/2bf1fca5ac68b085bbc42f445731791cf5aa3b1b) Update pkgs/tools/wayland/swww/default.nix
* [`68f5e955`](https://github.com/NixOS/nixpkgs/commit/68f5e9554ffa3cfee31786f9a3013ebd8a7d8308) Add maintainers
* [`7c201f6b`](https://github.com/NixOS/nixpkgs/commit/7c201f6b53bf4acc77184d110cd2cfd72d065bae) Add whitespaces for readability.
* [`72cfabf2`](https://github.com/NixOS/nixpkgs/commit/72cfabf2222ed982db3c24b70aec750861561f50) mononoki: 1.3 -> 1.5
* [`0566d27d`](https://github.com/NixOS/nixpkgs/commit/0566d27d03a7b9c285045f57004a6ba2c2613454) coder: fix web frontend building
* [`56ecab70`](https://github.com/NixOS/nixpkgs/commit/56ecab709a5a6e49049c0892a7cc59cfa22bdd98) nixos/coder: init module
* [`eb38ad04`](https://github.com/NixOS/nixpkgs/commit/eb38ad04efae0ebcd7217c4ccace3da0102d85af) dockerTools: ensure runAsRoot script not optimized away in test
* [`c66cabe3`](https://github.com/NixOS/nixpkgs/commit/c66cabe33ea1f969ef9562feeef0a015b83a60b1) dockerTools: use more familiar terminology to describe test image
* [`298c543e`](https://github.com/NixOS/nixpkgs/commit/298c543e55284a3be8e8785302883fb873e005af) dockerTools: Specify 'latest' tag for repeated layer test image
* [`84e04ccf`](https://github.com/NixOS/nixpkgs/commit/84e04ccf8570e9f8072486f7d750d326225c7117) dockerTools: Preprocess layers list before unpack to handle repeated layers
* [`c7fbd40f`](https://github.com/NixOS/nixpkgs/commit/c7fbd40fd152506057d84e3e656dd564164168d2) groff: Add enableIconv and enableLibuchardet option
* [`235d9e21`](https://github.com/NixOS/nixpkgs/commit/235d9e218736a7d930992e7297bef1182d69fd60) lib/licenses.nix: Add cc-by-nc-nd-30
* [`4efb17b5`](https://github.com/NixOS/nixpkgs/commit/4efb17b50b96b9058d646ecec8d632d69d3c9633) dendrite: 0.11.0 -> 0.11.1
* [`f0ddf281`](https://github.com/NixOS/nixpkgs/commit/f0ddf281c593b82a2bd11110e8147ba85a1de70c) sane-backends: 1.1.1 -> 1.2.1
* [`c845a281`](https://github.com/NixOS/nixpkgs/commit/c845a2815fac9fc3ad40a2095aa3d3d129616af1) cargo-pgx: add buildPgxExtension
* [`4e189d76`](https://github.com/NixOS/nixpkgs/commit/4e189d769bdfb7a220da5cd98413d63d5768489a) timescaledb-toolkit: init at 1.14.0
* [`9dc7a05a`](https://github.com/NixOS/nixpkgs/commit/9dc7a05a85a0b051d208f41ddca0f6cdb6e6ff06) cargo-pgx/timescaledb_toolkit: add nixos test
* [`5287f144`](https://github.com/NixOS/nixpkgs/commit/5287f1446fbb227f75f75c2ac5df59c9cd7ca4e6) Apply suggestions from code review
* [`1a2c2846`](https://github.com/NixOS/nixpkgs/commit/1a2c2846b0933b596c51e964acb8a45ab9a13691) lib.path.subpath.join: init
* [`3c486263`](https://github.com/NixOS/nixpkgs/commit/3c4862636fd6a29f69a7b43f82a3cf070a9c650d) linuxPackages.ipu6-drivers: init at 2023-01-17
* [`134e4a64`](https://github.com/NixOS/nixpkgs/commit/134e4a6473a032513c2bea03035342aacaf3f53d) ipu6-camera-bin: init at 2022-11-12
* [`4269391e`](https://github.com/NixOS/nixpkgs/commit/4269391e56b015472b8f238c1ae52442e168348f) ipu6-camera-hal: init at 2023-01-09
* [`c4c9f600`](https://github.com/NixOS/nixpkgs/commit/c4c9f600e7a09bb0044fc10ea3ae62a3c65b76b5) gst_all_1.icamerasrc: init at 202212109
* [`9b4f6d4d`](https://github.com/NixOS/nixpkgs/commit/9b4f6d4d9278632b1e6c28e83ed9764bd0387c43) linuxPackages.ivsc-driver: init at 2023-01-06
* [`6b338572`](https://github.com/NixOS/nixpkgs/commit/6b3385723874fc580a854701292a9a0c7ede4482) ivsc-firmware: init at 2022-11-02
* [`b38d6054`](https://github.com/NixOS/nixpkgs/commit/b38d6054d789ec8f12a11ed7c2107ce770be7a98) linuxPackages.ipu6-drivers: Reuse ivsc-driver source
* [`731053d8`](https://github.com/NixOS/nixpkgs/commit/731053d8aa1624475779065ef17294c54af072e4) services.cachix-watch-store: fix description of compressionLevel
* [`bacfd9df`](https://github.com/NixOS/nixpkgs/commit/bacfd9df0915c8bb5c4b40234d9cd980196f2398) bitwig-studio: 4.4.6 -> 4.4.8
* [`ee89f8e1`](https://github.com/NixOS/nixpkgs/commit/ee89f8e1e558c2021a7bea8a7dd50b9521afb772) navidrome: 0.49.1 -> 0.49.3
* [`51417891`](https://github.com/NixOS/nixpkgs/commit/514178918f7f97a066911c0ce3fc2d41f550a934) 0.7.0 -> 0.7.2
* [`b3b79fc4`](https://github.com/NixOS/nixpkgs/commit/b3b79fc41eba5f31467bd5aa568ee52a5202ca7a) linuxPackages.systemtap: 4.5 -> 4.8
* [`0061f844`](https://github.com/NixOS/nixpkgs/commit/0061f844c9bbc993606eecd79243a07fb358443e) onlyoffice-documentserver: 7.3.0 -> 7.3.2
* [`72840a9f`](https://github.com/NixOS/nixpkgs/commit/72840a9f2f118c91f1421b8e8773fda576ea9114) peek: switch to ffmpeg-full
* [`fef1cfb0`](https://github.com/NixOS/nixpkgs/commit/fef1cfb05a1fa5596591058fe56fbb120b83d550) python3Packages.grpcio: Fix build parallelism
* [`f83f0f8d`](https://github.com/NixOS/nixpkgs/commit/f83f0f8dfaf0f7ec853597fa236340bc1873d315) python3Packages.mixins: init at 0.1.4
* [`e78dc938`](https://github.com/NixOS/nixpkgs/commit/e78dc938d81cc175f4af9da0d94771c39aa43cd5) nixos/qemu-vm: fix minor typo
* [`9f57a615`](https://github.com/NixOS/nixpkgs/commit/9f57a615e4f912c83d3f66d8e051c1b18b6ba2d3) nifi: 1.16.3 -> 1.20.0
* [`4d547243`](https://github.com/NixOS/nixpkgs/commit/4d547243a283353e7cb1c39fe76efa66f18ecf3c) signal-desktop: 6.5.1 -> 6.7.0, signal-desktop-beta: 6.6.0-beta.1 -> 6.8.0-beta.1
* [`2c7af955`](https://github.com/NixOS/nixpkgs/commit/2c7af95567179d59340bf54800642b851133dd3c) pre-commit: 2.20.0 -> 3.1.0
* [`4b9857d4`](https://github.com/NixOS/nixpkgs/commit/4b9857d413bf41d8e0036a4bee891621fc505127) calls: 43.2 -> 43.3
* [`1e2257a4`](https://github.com/NixOS/nixpkgs/commit/1e2257a4584ee372ab772741e5546bed6244d591) maintainers: update lunik1's gpg key
* [`91294961`](https://github.com/NixOS/nixpkgs/commit/912949612371d0d6a26640992f13dfbec3c06711) libheif: 1.14.2 -> 1.15.1
* [`eddb6a1b`](https://github.com/NixOS/nixpkgs/commit/eddb6a1b6241303c0310993294662e9347a2435d) hunspell: fix spanish-language dictionaries
* [`c4fc77a0`](https://github.com/NixOS/nixpkgs/commit/c4fc77a0c987f48f4927bbbbd295ed3ecafd94c0) python3Packages.qtile-extras: init at 0.22.1
* [`4c8b75ed`](https://github.com/NixOS/nixpkgs/commit/4c8b75ed9a4a2583b1b8f58745852d0f4fa49fcc) dotnetPackages.Nuget: 5.6.0.6489->6.3.1.1
* [`f388236a`](https://github.com/NixOS/nixpkgs/commit/f388236ab2b1c8b25220492e8774bdf3de69ce3f) python310Packages.sentry-sdk: 1.15.0 -> 1.16.0
* [`476b6f8d`](https://github.com/NixOS/nixpkgs/commit/476b6f8d6c69084280fa691fdd7b12109fe0534d) python310Packages.deid: init at 0.3.21
* [`0acc6df7`](https://github.com/NixOS/nixpkgs/commit/0acc6df7423fc042f29a0df8a3c39249b2e901e9) refactor: Add spacing around tests
* [`73981dd9`](https://github.com/NixOS/nixpkgs/commit/73981dd9c24d3b7529c12ea83c4d59c1377a2b99) feat: Create desktop item for `appimage-run`
* [`5648b252`](https://github.com/NixOS/nixpkgs/commit/5648b252998033358685ddc987450b59bb6d8dfd) maintainers: change email, add matrix
* [`a3059850`](https://github.com/NixOS/nixpkgs/commit/a3059850c5d6b53975d85e00b879819e1e3585e3) zix: init at unstable-2023-02-13
* [`03bd6304`](https://github.com/NixOS/nixpkgs/commit/03bd63043fe664316f479fc0a548e903432fbb0f) deepin.dtkgui: don't propagate librsvg and freeimage
* [`e3c84efc`](https://github.com/NixOS/nixpkgs/commit/e3c84efc8ebd908b29b1be9f63db8139b3437608) deepin.deepin-terminal: 5.4.34 -> 5.9.40
* [`118bdf25`](https://github.com/NixOS/nixpkgs/commit/118bdf25a6c572dd2fd29d10b1ae2e4d9a95b907) lib/modules: Allow an "anonymous" module with key in disabledModules
* [`735b57d9`](https://github.com/NixOS/nixpkgs/commit/735b57d962bf61f5457f48e8d8e16da56ff1d88a) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`b7d8c463`](https://github.com/NixOS/nixpkgs/commit/b7d8c4630206d113c8cbe22d0ff80be5189a7655) haskellPackages.ghc: 9.2.6 -> 9.2.7
* [`499be580`](https://github.com/NixOS/nixpkgs/commit/499be5802684091917e14e6e320504d5c770b990) haskellPackages: stackage LTS 20.11 -> LTS 20.12
* [`a8abc9e5`](https://github.com/NixOS/nixpkgs/commit/a8abc9e550782b512a0ea20fcda3d10c72b65f64) all-cabal-hashes: 2023-02-19T09:15:19Z -> 2023-03-01T16:43:25Z
* [`bc6029b2`](https://github.com/NixOS/nixpkgs/commit/bc6029b2d1ecc649e9d8b8bab6c5d3c7167df04c) haskellPackages: regenerate package set based on current config
* [`50e7b4bf`](https://github.com/NixOS/nixpkgs/commit/50e7b4bfce7218d1700e3cc420d063ebfbfc04fe) haskellPackages.haskell-gi: use hackage2nix generated 0.26.3 expr
* [`ed65e11b`](https://github.com/NixOS/nixpkgs/commit/ed65e11bac2fde631de8b76a5dddef8aabef2761) haskellPackages.Cabal_3_8_1_0: drop obsolete override
* [`ca44f048`](https://github.com/NixOS/nixpkgs/commit/ca44f0485c6135d1a1be5f9a3ac7ab1b18c24752) python310Packages.questionary: increase open files for testing
* [`5a86855e`](https://github.com/NixOS/nixpkgs/commit/5a86855e006de9420ed5b2f799900bbefb691e53) haskell.packages.*: reflect terminfo update for cross compilation
* [`74ff13b1`](https://github.com/NixOS/nixpkgs/commit/74ff13b12d2762c997ab418f39e81a3fdd909298) haskellPackages.espial: drop upstreamed patch
* [`21b99329`](https://github.com/NixOS/nixpkgs/commit/21b993296fbfd80543fbe14fa0ff6b093ba54502) haskellPackages: reflect haskelline 0.8.2 -> 0.8.2.1
* [`7f2ac905`](https://github.com/NixOS/nixpkgs/commit/7f2ac90596a220c22c28908f0e402d7b09a44951) haskell.packages.ghc94.primitive: 0.7.4.0 -> 0.8.0.0
* [`295066c4`](https://github.com/NixOS/nixpkgs/commit/295066c43d74b2ac73439dcc1d17639d2e55298b) haskell.packages.ghc94.aeson: 2.1.1.0 -> 2.1.2.1
* [`335f3cf3`](https://github.com/NixOS/nixpkgs/commit/335f3cf3906b77a5e0d73dc435b4177c1f50a67d) haskell.packages.ghc94.lens: 5.2 -> 5.2.1
* [`28e1929f`](https://github.com/NixOS/nixpkgs/commit/28e1929fb013cea5aad7ad3ed8daa1cb34a5fe84) git-annex: update sha256 for 10.20230227
* [`fa651582`](https://github.com/NixOS/nixpkgs/commit/fa651582867b2ebd01d87472febcf539996d8e6b) elmPackages.elm-format: reflect text 2.0.1 -> 2.0.2
* [`73665ef4`](https://github.com/NixOS/nixpkgs/commit/73665ef4e43f658edaff4421dd87ec7e19d02923) i3status-rust: 0.22.0 -> 0.30.4
* [`1bf8d63f`](https://github.com/NixOS/nixpkgs/commit/1bf8d63f8fe9b48225ed58a561b991bc4ba00398) openai-full: create variant that includes optional deps
* [`d1949033`](https://github.com/NixOS/nixpkgs/commit/d19490339b900fff1de43876702964f3d41557ea) carla: 2.5.1 -> 2.5.3
* [`c0680473`](https://github.com/NixOS/nixpkgs/commit/c068047330d4c72cca53bf3a3d383bf8896bbcd0) carla: remove python3Packages and gtk2, gk3 assertions
* [`410971fc`](https://github.com/NixOS/nixpkgs/commit/410971fc3597ede8a23e829487847ad35641e69b) zrythm: 1.0.0-alpha.28.1.3 -> 1.0.0-beta.4.5.62
* [`a48211c3`](https://github.com/NixOS/nixpkgs/commit/a48211c319dc9520dbabfd20bd2001f991fd898e) microsoft-edge: fix file picker and `subsituteInPlace`
* [`0367cc8b`](https://github.com/NixOS/nixpkgs/commit/0367cc8b5a7d4e6e62ca7c9f429f8a1901194297) nixos/profiles/base: remove duplicate systemPackages
* [`2c126112`](https://github.com/NixOS/nixpkgs/commit/2c1261127770f1886e49903742e4e989fdae6ad2) phoc: 0.21.1 -> 0.25.0
* [`2455dfab`](https://github.com/NixOS/nixpkgs/commit/2455dfab0da8bb2158d9c404ec13ccf42250ed3e) phosh: 0.23.0 -> 0.25.1
* [`a10d6761`](https://github.com/NixOS/nixpkgs/commit/a10d67619900daa500e010a3c68c1e7799c32eb8) llvm: tighten platforms
* [`3e3367aa`](https://github.com/NixOS/nixpkgs/commit/3e3367aa6a18cf4ec4c79c21f36eec150b3d7939) nixos/profiles/base: remove duplicate and optimize fsPackages
* [`2100c492`](https://github.com/NixOS/nixpkgs/commit/2100c4926200b1ebbee032ad22113597195932f2) endless-sky:0.9.14 -> 0.9.16.1
* [`fa8ecdce`](https://github.com/NixOS/nixpkgs/commit/fa8ecdced8888122a4ec14c8e652d350b2c97fd1) monocraft: 1.4 -> 2.4
* [`9acd60aa`](https://github.com/NixOS/nixpkgs/commit/9acd60aa46f21b69bb96842daac48c4414eaac89) valent: init at unstable-2023-03-02
* [`e9041742`](https://github.com/NixOS/nixpkgs/commit/e9041742ff895927c20b1c3bf04b012184839ffc) haskellPackages.drunken-bishop: unbreak (jail-break)
* [`b373d299`](https://github.com/NixOS/nixpkgs/commit/b373d299bae89922f2bde5f351b90495b182daf2) docs/rust: improve docs for nightly usage
* [`fcc10ee9`](https://github.com/NixOS/nixpkgs/commit/fcc10ee9a4891ea20194fa8178d55786439fd73a) cargo-binutils: don't recommend nixpkgs-mozilla
* [`35081a77`](https://github.com/NixOS/nixpkgs/commit/35081a77d56c84bea79bc810a825179357d68658) cargo-llvm-cov: don't recommend nixpkgs-mozilla
* [`2c02d0ba`](https://github.com/NixOS/nixpkgs/commit/2c02d0ba11687d5ecca95ac33b1e9227f920ac3c) mongosh: 1.6.2 -> 1.8.0, use buildNpmPackage
* [`14c10906`](https://github.com/NixOS/nixpkgs/commit/14c10906dbadc239ae2ecfced6f1dcb9b602da11) btrfs-progs: 6.1.3 -> 6.2.1
* [`6428223c`](https://github.com/NixOS/nixpkgs/commit/6428223c0ec203dc80716f100f89985bc4caafb2) cgreen: take maintenance
* [`abedfdd3`](https://github.com/NixOS/nixpkgs/commit/abedfdd3da6c1a301f23556f06936490e69c070a) maintainers: remove nichtsfrei
* [`fa06318a`](https://github.com/NixOS/nixpkgs/commit/fa06318a46c6110eb5395ffcb0270fca38da09f1) ndn-cxx: unpin openssl_1_1
* [`7e13b629`](https://github.com/NixOS/nixpkgs/commit/7e13b629c733ed7510c8d5fe3c77dce1316c1460) ndn-tools: unpin openssl_1_1
* [`1c430957`](https://github.com/NixOS/nixpkgs/commit/1c430957694840e5771297c5ef7506492dabd270) haskell.packages.ghc94.primitive: Pin to 0.7.4.0
* [`bb5370b8`](https://github.com/NixOS/nixpkgs/commit/bb5370b8b33570e62347a958e309c0161c271db8) nixos/modules/installer/netboot/netboot-minimal: reduce closure size
* [`48eab73b`](https://github.com/NixOS/nixpkgs/commit/48eab73bb6145dc3e78325fc1bda679ba5c8645a) python310Packages.eradicate: update meta
* [`57e21e88`](https://github.com/NixOS/nixpkgs/commit/57e21e88b204c55eac1569807dd974741beffb5f) python310Packages.eradicate: disable on unsupported Python releases
* [`e1806091`](https://github.com/NixOS/nixpkgs/commit/e1806091d7374613c403414ae0debb58e6a7c814) python310Packages.eradicate: 2.1.0 -> 2.2.0
* [`0f1483d1`](https://github.com/NixOS/nixpkgs/commit/0f1483d1a261a1f7f9a3ac109a16cdff68312db4) python310Packages.lineedit: init at 0.1.6
* [`9e3db173`](https://github.com/NixOS/nixpkgs/commit/9e3db1731f248bd604dec537d08196ff361dd5b2) localsend: init at 1.8.0
* [`ca9f0682`](https://github.com/NixOS/nixpkgs/commit/ca9f0682fdbaf70454be9c1dd51250a0065233bd) nixos/systemd-boot: always use profile_path() for system closure paths
* [`73f2d007`](https://github.com/NixOS/nixpkgs/commit/73f2d0074aa039a40fd11ffcce6495568528c56e) python310Packages.rchitect: init at 0.3.40
* [`e730867d`](https://github.com/NixOS/nixpkgs/commit/e730867dc051f9f9f6bd0b641838a24b74cad4c8) python310Packages.radian: init at 0.6.4 and provide radianWrapper
* [`32907346`](https://github.com/NixOS/nixpkgs/commit/3290734615c91f490550d8336e4cf14d897b2027) pkgsStatic.iproute2: fix build (disable shared libraries)
* [`3c4b76f4`](https://github.com/NixOS/nixpkgs/commit/3c4b76f46e2a7301b516df31d6024782eba9ba07) katawa-shoujo: init at 1.3.1
* [`33c3687d`](https://github.com/NixOS/nixpkgs/commit/33c3687d221b4be03e9a891636d8c25401c3317b) vscodium: 1.75.0.23033 -> 1.76.0.23062
* [`6a1da3b2`](https://github.com/NixOS/nixpkgs/commit/6a1da3b21ac581ffec660940d75107f3c979df15) python3Packages.openaiauth: init at 0.3.2
* [`823e822a`](https://github.com/NixOS/nixpkgs/commit/823e822aeec15abad61d2b56ee2bf8130a9e34d4) mdbook: 0.4.26 -> 0.4.28
* [`5edaf690`](https://github.com/NixOS/nixpkgs/commit/5edaf6903cee9c187d3ad191c440e38f5ba1406d) taskell: unbreak build
* [`c54e5071`](https://github.com/NixOS/nixpkgs/commit/c54e50710205e56d0a5ccd60ed68f84398b54b8e) taskell: remove doJailbreak
* [`09f2c45f`](https://github.com/NixOS/nixpkgs/commit/09f2c45f6ba57a85d98b0c02cababd6034fd401f) diagrams-gtk: unbreak build
* [`782f4c77`](https://github.com/NixOS/nixpkgs/commit/782f4c779a1aec781fe2747f809964f9b6c0895f) cloud-hypervisor: 29.0 -> 30.0
* [`58244e97`](https://github.com/NixOS/nixpkgs/commit/58244e97c2978648868f1d253c47192bcf4b0756) haskellPackages: regenerate package set based on current config
* [`bf864baa`](https://github.com/NixOS/nixpkgs/commit/bf864baaa28514dbd4714fcfeb5714e7f3af4343) python310Packages.django-ipware: 4.0.2 -> 5.0.0
* [`62821edd`](https://github.com/NixOS/nixpkgs/commit/62821edd2e685be68ece5dd50af4b493a4fa9dba) This PR sets default SPARK_HOME and JAVA_HOME for R's sparklyr package using a patch in .onload. Preset value take precedence. SPARK_HOME points to python3Packages.pyspark rather than pkgs.spark because the former is actively maintained.
* [`ad920652`](https://github.com/NixOS/nixpkgs/commit/ad9206529272709d983822f7661bcc8b2ab343c8) element-{web,desktop}: hack to make ofborg maintainer pings work again
* [`a6ad4d51`](https://github.com/NixOS/nixpkgs/commit/a6ad4d5146fdb18c504102e45c842a667eb40d41) python310Packages.django-ipware: add changelog to meta
* [`2d91c09a`](https://github.com/NixOS/nixpkgs/commit/2d91c09a03dcde05ab350e8e7849f55dd3bc97a6) python310Packages.django-ipware: disable on unsupported Python releases
* [`df70514c`](https://github.com/NixOS/nixpkgs/commit/df70514c973227bf1be0b758ecec7a743e0cd0c8) git-workspace: 1.1.0 -> 1.2.1
* [`5f60ed18`](https://github.com/NixOS/nixpkgs/commit/5f60ed186f842d4818de7a6615ad64dbc1c56294) kubelogin-oidc: 1.26.0 -> 1.27.0
* [`3af39763`](https://github.com/NixOS/nixpkgs/commit/3af397636d07d949148e610c278060c7c0c8fb96) evcc: 0.114.0 -> 0.114.1
* [`a6462d10`](https://github.com/NixOS/nixpkgs/commit/a6462d104a8d7004df933c892c9cf2d42c48ee97) iosevka-bin: 19.0.1 -> 20.0.0
* [`14622349`](https://github.com/NixOS/nixpkgs/commit/14622349154c73938ac2b385be92518235e92a0d) hue-plus: init at 1.4.5
* [`a233af68`](https://github.com/NixOS/nixpkgs/commit/a233af68773ab7dbf6157a612ae0eaed02abe98c) android-tools: 33.0.3p2 -> 34.0.0
* [`983d0143`](https://github.com/NixOS/nixpkgs/commit/983d0143d07d494d10cb7368d18852aa815fb3f5) autorestic: 1.7.6 -> 1.7.7
* [`6ced8d96`](https://github.com/NixOS/nixpkgs/commit/6ced8d96e3912ce4b9c5583c6e19667814a3fa9e) bluejeans-gui: 2.31.0.83 -> 2.32.1.3
* [`3966519d`](https://github.com/NixOS/nixpkgs/commit/3966519d12be2fb3fded3420f1cc82d681b17b5d) libreoffice: wrapper.nix rewrite
* [`16818343`](https://github.com/NixOS/nixpkgs/commit/16818343f11972ed7f591080992ba146790cc2f1) maintainers: add apfelkuchen6
* [`481f02f7`](https://github.com/NixOS/nixpkgs/commit/481f02f7dd1b21ddfc363ec30b99fcfac04deaec) mpv: allow scripts to add wrapper args
* [`a4c91d19`](https://github.com/NixOS/nixpkgs/commit/a4c91d198cf2bea44784d578324325e2b21411e4) coreboot-utils: 4.14 -> 4.19
* [`be1d82d5`](https://github.com/NixOS/nixpkgs/commit/be1d82d5ca6c3e80442d91b1a45af66776326495) python310Packages.openapi-schema-validator: 0.3.4 -> 0.4.3
* [`f1479a8e`](https://github.com/NixOS/nixpkgs/commit/f1479a8e9ff0c57a4d90b7ea1a86777be152330c) python310Packages.openapi-spec-validator: 0.5.1 -> 0.5.5
* [`9ca5356d`](https://github.com/NixOS/nixpkgs/commit/9ca5356d8d4475a12e9ad4d3d611fddbc02d4aa6) python310Packages.openapi-core: 0.16.6 -> 0.17.0
* [`2689297c`](https://github.com/NixOS/nixpkgs/commit/2689297c50e2041d7f1846580f6bd4d784cd45f9) rustpython: 2022-10-11 -> 0.2.0
* [`851e7062`](https://github.com/NixOS/nixpkgs/commit/851e70627a9c4c22dd77bc182b5d1feda59ceea3) python310Packages.evtx: fix build on darwin
* [`bb5edc48`](https://github.com/NixOS/nixpkgs/commit/bb5edc482e691dbf9d0a28348684b2af611c6711) rustpython: fix build on aarch64-linux
* [`7e29e1b2`](https://github.com/NixOS/nixpkgs/commit/7e29e1b2c2cb2adb79783f2393553fbfd52175c5) postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1
* [`ea593627`](https://github.com/NixOS/nixpkgs/commit/ea593627b9df5925f6a9c78698daedbaf2536753) python310Packages.pydata-sphinx-theme: 0.13.0 -> 0.13.1
* [`f6546a76`](https://github.com/NixOS/nixpkgs/commit/f6546a76559371bd690c30e4c4db8f898704ac31) python310Packages.jupyter-book: 0.14.0 -> 0.15.0
* [`fc9ceeba`](https://github.com/NixOS/nixpkgs/commit/fc9ceeba82d0f5c0b4be97ee333e58c41b7ab67d) brakeman: 5.4.0 -> 5.4.1
* [`f613d92a`](https://github.com/NixOS/nixpkgs/commit/f613d92a67fb0872bdb4f622e32183058f262778) smimesign: 0.1.0 -> 0.2.0
* [`70073985`](https://github.com/NixOS/nixpkgs/commit/70073985ae856f777639a4742943f48b317d7799) nixos/gemstash: init module
* [`14af7c5a`](https://github.com/NixOS/nixpkgs/commit/14af7c5a37dcb5c09e13b458ca54a794b8641df2) directx-shader-compiler: 1.7.2212 -> 1.7.2212.1
* [`46b4fad0`](https://github.com/NixOS/nixpkgs/commit/46b4fad03e60e68a728ace81aaf8db2b6af7d31a) conftest: 0.39.1 -> 0.39.2
* [`3e79b30f`](https://github.com/NixOS/nixpkgs/commit/3e79b30f642ccaf6b3f25c851ada5b34d94f42ed) browserpass: 3.0.10 -> 3.1.0
* [`7ed8c4cb`](https://github.com/NixOS/nixpkgs/commit/7ed8c4cbade056a7835876106a6b36f2b84fb113) obs-studio-plugins.advanced-scene-switcher: init at 1.20.5
* [`a3dcdef4`](https://github.com/NixOS/nixpkgs/commit/a3dcdef4a78b4a459fd0aa06d99ad82623826131) chezmoi: 2.31.0 -> 2.31.1
* [`bb26db7d`](https://github.com/NixOS/nixpkgs/commit/bb26db7dd930499c3a759623ee05473953094cfd) python310Packages.nestedtext: add changelog to meta
* [`49a67605`](https://github.com/NixOS/nixpkgs/commit/49a676052101f4b2206a2b559181ab6050c0eac4) python310Packages.nestedtext: equalize
* [`dba4f381`](https://github.com/NixOS/nixpkgs/commit/dba4f3816648b2a1a53df0b7b4ad23619d97e7f7) python310Packages.nestedtext: disable on unsupported Python releases
* [`6509273d`](https://github.com/NixOS/nixpkgs/commit/6509273d853b8d0b3d90fe5edfd43397525b1753) python310Packages.nestedtext: 1.2 -> 3.5
* [`cab5d3d7`](https://github.com/NixOS/nixpkgs/commit/cab5d3d75b6488ce5614b7e4fd074f74919a4363) circleci-cli: 0.1.23667 -> 0.1.23816
* [`d6630686`](https://github.com/NixOS/nixpkgs/commit/d6630686893dc78f4d2ab908d845cae131443224) python310Packages.parametrize-from-file: disable failing test
* [`2a68c63f`](https://github.com/NixOS/nixpkgs/commit/2a68c63fc6c89ee7b9039e63cb612eea9dbc0c01) stunnel: 5.67 -> 5.69
* [`546adc67`](https://github.com/NixOS/nixpkgs/commit/546adc67e70ce0b1aa6a34ad2ccc0238548320ed) organicmaps: 2023.01.25-3 -> 2023.03.05-5
* [`f59d3afc`](https://github.com/NixOS/nixpkgs/commit/f59d3afcd5e0d0e7e763155254b89ef115ecb654) organicmaps: add updateScript
* [`0fd67b46`](https://github.com/NixOS/nixpkgs/commit/0fd67b467ad31cb7af901989df3e5e4a59f9e91d) gobgp: 3.11.0 -> 3.12.0
* [`79394475`](https://github.com/NixOS/nixpkgs/commit/7939447527bf256129c8b44883f31edb261de165) Update pkgs/development/r-modules/default.nix
* [`49878856`](https://github.com/NixOS/nixpkgs/commit/49878856e6cde3ae674f470da407e3bde2f55c9d) https://github.com/NixOS/nixpkgs/pull/188334#issuecomment-1445425412
* [`e34328aa`](https://github.com/NixOS/nixpkgs/commit/e34328aa3a0949f955ee96317c3bcf70f5c5ec07) netcoredbg: 2.0.0-895 -> 2.2.0-961
* [`c0a2b57e`](https://github.com/NixOS/nixpkgs/commit/c0a2b57e200e41f4b33af9e2f14a4b861c88811d) maintainers: add konradmalik
* [`20b50b7a`](https://github.com/NixOS/nixpkgs/commit/20b50b7a8f853f209421c8951617b376e2e819b5) jabref: 5.7 -> 5.9
* [`66b05cfb`](https://github.com/NixOS/nixpkgs/commit/66b05cfb9a00cfd8ec246e9591d5afbea7adca2e) dbmate: 1.16.2 -> 2.0.1
* [`23e0077d`](https://github.com/NixOS/nixpkgs/commit/23e0077d3653757c405a848d07ddbd37507a7ece) fizz: 2023.02.27.00 -> 2023.03.06.00
* [`8cab427e`](https://github.com/NixOS/nixpkgs/commit/8cab427e63b126cae4a7067d41e6e0c456b3b1e2) megacmd: 1.5.1 -> 1.6.0
* [`04a5d95d`](https://github.com/NixOS/nixpkgs/commit/04a5d95dbf13ed3776edc7c24927cf76975f37aa) maintainers: add milran
* [`42cda97c`](https://github.com/NixOS/nixpkgs/commit/42cda97c500b54ad2e8617d515cc198a027dceaa) gqlgenc: init at 0.11.3
* [`af13b8f8`](https://github.com/NixOS/nixpkgs/commit/af13b8f8523a6c2f74a207210f30d8c9f54ec3cd) boca: 1.0.6a -> 1.0.7
* [`19f0a78c`](https://github.com/NixOS/nixpkgs/commit/19f0a78c195223e7021ff4d16bad71c6f4cb981d) mpvScripts.uosc: init at 4.6.0
* [`b85c1e31`](https://github.com/NixOS/nixpkgs/commit/b85c1e319e28161044e0ca1a33cdb69310d1e93f) node2nix: pull in patch to fix bin scripts with crlf line-endings
* [`0835e5a1`](https://github.com/NixOS/nixpkgs/commit/0835e5a189bf0ae676ccfd91afaf0e6c39c65b28) nodePackages: regen only node-env
* [`94ce5a87`](https://github.com/NixOS/nixpkgs/commit/94ce5a875a001d285537a8757fd6e63d6b3f93f3) pkgs/tools/wayland: enable strictDeps
* [`47ace7b0`](https://github.com/NixOS/nixpkgs/commit/47ace7b0af442b2e6bdb8728330622c7dbc81499) pkgs/tools/nix: enable strictDeps
* [`2ba99961`](https://github.com/NixOS/nixpkgs/commit/2ba999615a0a558660a4eb00d42704566223264d) psql2csv: init at 0.12
* [`2f430da1`](https://github.com/NixOS/nixpkgs/commit/2f430da1c6aaeb4306427b77f139f53dcd729e08) Replacing MRAN mirror with posit
* [`22cf9cd0`](https://github.com/NixOS/nixpkgs/commit/22cf9cd0112c9765d99226e38bdce9b7d82fba7d) sfeed: 1.6 -> 1.7
* [`25939765`](https://github.com/NixOS/nixpkgs/commit/25939765180ed716662ed2c441ebe2506202cd8b) csdr: 0.18.0 -> 0.18.1
* [`bd7bc857`](https://github.com/NixOS/nixpkgs/commit/bd7bc857e3da164df6686be04a3cefa6a2a67cc0) matrix-appservice-slack: 2.1.0 -> 2.1.1
* [`bc3335af`](https://github.com/NixOS/nixpkgs/commit/bc3335af8b5aff0c20551b7b5c932ecf83b9e17f) matrix-appservice-slack: add chvp to maintainers
* [`70ec07b9`](https://github.com/NixOS/nixpkgs/commit/70ec07b998ba7bb60f2a2b5872d3b46c72fb052a) haskell.packages.ghc94.aeson: allow quickcheck-instances 0.3.28
* [`7e1bcf5f`](https://github.com/NixOS/nixpkgs/commit/7e1bcf5f38a361828604e68efc98825ee0e060c2) glooctl: 1.13.8 -> 1.13.9
* [`b1e6e553`](https://github.com/NixOS/nixpkgs/commit/b1e6e553faf3276ec478ae47878b0dab19504342) trivial-builders.writeShellApplication: use unwrapped shellcheck
* [`0c370aab`](https://github.com/NixOS/nixpkgs/commit/0c370aab6450244197fcd08814a42cdf560ea973) aws-sso-cli: 1.9.9 -> 1.9.10
* [`937e716d`](https://github.com/NixOS/nixpkgs/commit/937e716d4ea11874fdd6381ced8a93f42f4d7273) python3Packages.sphinxext-opengraph: 0.7.5 -> 0.8.1
* [`0a11517a`](https://github.com/NixOS/nixpkgs/commit/0a11517a84f5eab2e7d4ef5219325f20cc52653f) act: 0.2.42 -> 0.2.43
* [`5e6ebb3e`](https://github.com/NixOS/nixpkgs/commit/5e6ebb3e898d5dfee032464e54995f2fcb60bdbb) python310Packages.aiolivisi: 0.0.16 -> 0.0.18
* [`9f031004`](https://github.com/NixOS/nixpkgs/commit/9f031004e71fe8cfa4ae1095a50a3afd8cdfe3d5) libdisplay-info: 0.1.0 -> 0.1.1
* [`60446dda`](https://github.com/NixOS/nixpkgs/commit/60446dda1fca1f80876ba16e26b61ec486b377aa) nixos/hydra: wait for network-online before evaluator start
* [`c0fb30a6`](https://github.com/NixOS/nixpkgs/commit/c0fb30a60e8d2a4de18c0ce53ea6cc8d05f796c9) python310Packages.archinfo: 9.2.40 -> 9.2.41
* [`263f871a`](https://github.com/NixOS/nixpkgs/commit/263f871a627224db5af69ea1e93ef8e76cf577e7) python310Packages.ailment: 9.2.40 -> 9.2.41
* [`8318c658`](https://github.com/NixOS/nixpkgs/commit/8318c658b973ddad416400fa435df09e9a42202f) python310Packages.pyvex: 9.2.40 -> 9.2.41
* [`dd974c57`](https://github.com/NixOS/nixpkgs/commit/dd974c57ac8a0053b1924fa8e2dda87045b301a5) python310Packages.claripy: 9.2.40 -> 9.2.41
* [`7e96ced3`](https://github.com/NixOS/nixpkgs/commit/7e96ced3ea0539cf338136c07b1ccc3da66a0942) python310Packages.cle: 9.2.40 -> 9.2.41
* [`01e6f31e`](https://github.com/NixOS/nixpkgs/commit/01e6f31e561bdf6107dd9f1dbae30e4017d7f9ce) python310Packages.angr: 9.2.40 -> 9.2.41
* [`b4c26395`](https://github.com/NixOS/nixpkgs/commit/b4c263953e0ef0d038002a250aa2b6bcf51bb0e0) python310Packages.python-otbr-api: 1.0.5 -> 1.0.7
* [`c3b9a3e1`](https://github.com/NixOS/nixpkgs/commit/c3b9a3e1f332a4e8b5adc2266a6d568065a195a7) matrix-appservice-irc: 0.37.0 -> 0.37.1
* [`2011b1f0`](https://github.com/NixOS/nixpkgs/commit/2011b1f0030f2f51537a22c5a24beb25ce9326d1) python310Packages.cemm: init at 0.5.1
* [`de134a16`](https://github.com/NixOS/nixpkgs/commit/de134a16be5e6393b8852b4c4aa61bc623c13eb8) chromium: 110.0.5481.177 -> 111.0.5563.64
* [`779db789`](https://github.com/NixOS/nixpkgs/commit/779db7898ca58416f6d1e5bc3c4ed4dafd32879c) go_1_20: 1.20.1 -> 1.20.2
* [`1e36120c`](https://github.com/NixOS/nixpkgs/commit/1e36120c94ad86c19c080e919a84f1ce3d1204e5) signalbackup-tools: 20230305 -> 20230307-1
* [`47276cf4`](https://github.com/NixOS/nixpkgs/commit/47276cf43bcc59e220cf5f95523b3b62d2eac395) ponyc: 0.50.0 -> 0.54.0
* [`5e0eeea8`](https://github.com/NixOS/nixpkgs/commit/5e0eeea8391658f3b138e844e2948423f532c181) pony-corral: 0.6.1 -> unstable-2023-02-11
* [`992b7224`](https://github.com/NixOS/nixpkgs/commit/992b72241df579171f3d3a34c0338fda89c315aa) katawa-shoujo: Add desktop file
* [`43dcf6a2`](https://github.com/NixOS/nixpkgs/commit/43dcf6a240cce10e04ebfde7da6b6f5c4f17ad3f) python310Packages.app-model: 0.1.1 -> 0.1.2
* [`43a3285b`](https://github.com/NixOS/nixpkgs/commit/43a3285b1ee7058cf90db774f169f4d5f48bfe97) kubescape: 2.0.161 -> 2.2.3
* [`2d7bb420`](https://github.com/NixOS/nixpkgs/commit/2d7bb420c8d4bd47bfb8f9b345da7a38ebea78a6) arkade: 0.9.3 -> 0.9.4
* [`4ffa19a0`](https://github.com/NixOS/nixpkgs/commit/4ffa19a0e91bd24c0e93839c4062987f4ddaa633) kubescape: 2.2.3 -> 2.2.4
* [`45a706c5`](https://github.com/NixOS/nixpkgs/commit/45a706c5991d6c305ed7942c7b3ec9e23242342e) python310Packages.prance: 0.21.8.0 -> 0.22.02.22.0
* [`34f4be4a`](https://github.com/NixOS/nixpkgs/commit/34f4be4ad2e7d153f370570ccec8467bec1b23d4) python310Packages.apispec: 6.1.0 -> 6.2.0
* [`c051db62`](https://github.com/NixOS/nixpkgs/commit/c051db62ce639d91f4e039dbc5fc1b090b0a35e8) linvstmanager: init at 1.1.1
* [`7018cf78`](https://github.com/NixOS/nixpkgs/commit/7018cf78c618e0a8ec4369c587319f51cb7b19b0) magma: fix for cuda_profiler_api.h for CUDA 11.8+
* [`22c6c560`](https://github.com/NixOS/nixpkgs/commit/22c6c5609143c5714cf7f3028f0f9744b8d27040) opa: migrate to OCaml 4.14
* [`c3dcd58d`](https://github.com/NixOS/nixpkgs/commit/c3dcd58d7ef46075fa5f3aa2a106b98dd636223c) netbird: 0.14.1 -> 0.14.2
* [`a8a12fdf`](https://github.com/NixOS/nixpkgs/commit/a8a12fdf8538e363846af8634b2a663595a8e686) erdtree: 1.2.0 -> 1.3.0
* [`8648885a`](https://github.com/NixOS/nixpkgs/commit/8648885a80194aea9fa20a699c260af357428a76) xc: 0.0.159 -> 0.0.175
* [`2cd53e12`](https://github.com/NixOS/nixpkgs/commit/2cd53e12829b1d80ca79e520cd720ec9bcb51ee0) python310Packages.caldav: 1.2.0 -> 1.2.1
* [`3d647935`](https://github.com/NixOS/nixpkgs/commit/3d647935eb8341ff5d70ce0ef53e00891430fc39) ov: 0.14.2 -> 0.15.0
* [`bfb509e4`](https://github.com/NixOS/nixpkgs/commit/bfb509e45c09585a5fb4c36032b5cfcab65ee9f4) python310Packages.insteon-frontend-home-assistant: 0.3.2 -> 0.3.3
* [`61852b7f`](https://github.com/NixOS/nixpkgs/commit/61852b7faa8b47aad422adca0fea90fe007e9ead) lib: remove deprecated functions
* [`bac160c5`](https://github.com/NixOS/nixpkgs/commit/bac160c5110547662176fe17923f208b5c38ddd0) altair: 5.0.14 -> 5.0.17
* [`194a3801`](https://github.com/NixOS/nixpkgs/commit/194a380161f12b7b720d25527b06292b715ddaf2) nexttrace: init at 1.1.3
* [`5e651fe3`](https://github.com/NixOS/nixpkgs/commit/5e651fe37e98c69121609146ad5240663d0387df) nixos/nexttrace: init
* [`d1ffbed1`](https://github.com/NixOS/nixpkgs/commit/d1ffbed1759054328af3c06a6f49c4e6996bfb7d) qcad: 3.27.9.2 -> 3.27.9.3
* [`392c79de`](https://github.com/NixOS/nixpkgs/commit/392c79dece5491dd62471da85df6adec1edcd29c) terraform-providers.aviatrix: 3.0.1 → 3.0.2
* [`35ebb2dc`](https://github.com/NixOS/nixpkgs/commit/35ebb2dc8341d34b01e5cf5092c29af180925391) terraform-providers.aiven: 4.0.0 → 4.1.0
* [`5f93b977`](https://github.com/NixOS/nixpkgs/commit/5f93b9774eb22fc13275d89a081a0acc14a82ca9) terraform-providers.cloudfoundry: 0.50.4 → 0.50.5
* [`c242f5c8`](https://github.com/NixOS/nixpkgs/commit/c242f5c89d42cef004ea0f8d155121b848b5b764) terraform-providers.cloudamqp: 1.23.0 → 1.24.0
* [`54c038d6`](https://github.com/NixOS/nixpkgs/commit/54c038d693d78fec48eb45ad34c6df14e5907f9c) terraform-providers.datadog: 3.21.0 → 3.22.0
* [`59d19cf0`](https://github.com/NixOS/nixpkgs/commit/59d19cf0a1e47595f4f38db20c00df5c7ef1db80) terraform-providers.okta: 3.42.0 → 3.43.0
* [`75725216`](https://github.com/NixOS/nixpkgs/commit/75725216fd4480420f45ff0437ca408965e7ea93) terraform-providers.mongodbatlas: 1.8.0 → 1.8.1
* [`2369bf3d`](https://github.com/NixOS/nixpkgs/commit/2369bf3d444bfd84a8b31e28ca867618e81d0077) terraform-providers.scaleway: 2.12.0 → 2.12.1
* [`1599fe76`](https://github.com/NixOS/nixpkgs/commit/1599fe767a9636c79b431420a20e0bf44f7e6787) terraform-providers.yandex: 0.85.0 → 0.86.0
* [`b274a380`](https://github.com/NixOS/nixpkgs/commit/b274a380cfec45850b369c31327c02ce36d694da) logcheck: 1.3.23 -> 1.4.2
* [`76c0e3ef`](https://github.com/NixOS/nixpkgs/commit/76c0e3ef55c937f83bbe6ba6543d430d7e6412a9) python310Packages.klein: don't test on multiple cores
* [`fb825182`](https://github.com/NixOS/nixpkgs/commit/fb8251822c6236d95629cfc4800f5eea9ee9932b) libadwaita: 1.2.2 -> 1.2.3
* [`b6b23791`](https://github.com/NixOS/nixpkgs/commit/b6b23791f51d1df6416d9ae713af57ccc8ff271b) pachyderm: 2.5.0 -> 2.5.1
* [`f7f6256d`](https://github.com/NixOS/nixpkgs/commit/f7f6256de8c51bb4aaec38792ef5d93853703ab4) ytt: 0.44.1 -> 0.45.0
* [`41ec7e2f`](https://github.com/NixOS/nixpkgs/commit/41ec7e2fefb0c3b8942cbfc47e579a052bdc5c49) python3Packages.sphinxext-opengraph: add changelog to meta
* [`a35b09be`](https://github.com/NixOS/nixpkgs/commit/a35b09be82e3ecd237791f32a93e9b681ffd553e) audacious: 4.2 -> 4.3
* [`d7a0fc6e`](https://github.com/NixOS/nixpkgs/commit/d7a0fc6e764f1a8cca6532a97b3d228c1f6bec90) amass: 3.21.2 -> 3.22.0
* [`c1d9d8c7`](https://github.com/NixOS/nixpkgs/commit/c1d9d8c7f3e99af8f475730c79cb2ad25b52558e) exploitdb: 2023-03-01 -> 2023-03-06
* [`2a508fbf`](https://github.com/NixOS/nixpkgs/commit/2a508fbf2c3bfd4130d7390b6ff9b1b29ccbbc44) python310Packages.sphinxext-opengraph: disable on unsupported Python releases
* [`d6e7f3fc`](https://github.com/NixOS/nixpkgs/commit/d6e7f3fc7b72a1e9a7616fcd378f4dcfb35cfb9e) rmw: init at 0.9.0
* [`3a38710c`](https://github.com/NixOS/nixpkgs/commit/3a38710c9211940fb7cebb88c1805d1973b6a918) python3Packages.squarify: init at 0.4.3
* [`60709908`](https://github.com/NixOS/nixpkgs/commit/60709908a27fa813022c10838908c979b291ca4c) ocaml: remove obsolete aliases for old versions
* [`8d42f2aa`](https://github.com/NixOS/nixpkgs/commit/8d42f2aa9d5e8d46b968db1a2b5efd7a5531c62e) opam_1_2: drop
* [`3d37d1bc`](https://github.com/NixOS/nixpkgs/commit/3d37d1bcc22837edfe18874a3fe83db6b981bb5c) python310Packages.aioslimproto: 2.1.1 -> 2.2.0
* [`410dfd65`](https://github.com/NixOS/nixpkgs/commit/410dfd651a828131ee0cd6f9a043310b07539db5) python310Packages.aioslimproto: add changelog to meta
* [`bff6d7eb`](https://github.com/NixOS/nixpkgs/commit/bff6d7eb5ec2587a11f022be11900df9ad8a0ea0) fabric-installer: 0.11.1 -> 0.11.2
* [`ffcf148a`](https://github.com/NixOS/nixpkgs/commit/ffcf148a8dd6e8d1e240137e3f8071af5fa92a28) nixos/waybar: allow change waybar package to use
* [`26e14e57`](https://github.com/NixOS/nixpkgs/commit/26e14e57af344f61d8adc37ce4f6f1fe554861bc) nixos/networkd-dispatcher: add rules option
* [`22fd05ad`](https://github.com/NixOS/nixpkgs/commit/22fd05adeeae38dd23be4b4c0ffb18f3f1fd264c) networkd-dispatcher: Add patch support store files
* [`d1323857`](https://github.com/NixOS/nixpkgs/commit/d1323857f853e14b4f45a6f18ae9907065653aff) tilemaker: 2.2.0 → 2.3.0
* [`9796cbfe`](https://github.com/NixOS/nixpkgs/commit/9796cbfe140d00504d7f8ee42a2b19132967608c) linux_xanmod_latest: 6.1.13 -> 6.1.14
* [`c70c23e0`](https://github.com/NixOS/nixpkgs/commit/c70c23e08809f0266076427567d25a8f8bc28764) linux_xanmod: 5.15.89 -> 6.1.15
* [`32af296b`](https://github.com/NixOS/nixpkgs/commit/32af296bbed999d10a5e0f54c1a1ad062b4030dc) linux_xanmod_latest: 6.1.14 -> 6.2.2
* [`ff894f5e`](https://github.com/NixOS/nixpkgs/commit/ff894f5efa5636117d30cf837e29b83f4d8a12bd) typos: 1.13.16 -> 1.13.18
* [`bd7439ef`](https://github.com/NixOS/nixpkgs/commit/bd7439ef8c332465035bba3f564540bf5692513f) xcp: 0.9.3 -> 0.9.4
* [`2f9b913c`](https://github.com/NixOS/nixpkgs/commit/2f9b913c50b0966192b96a857ad2edd534197c31) prismlauncher: use qtWrapperArgs
* [`eb127968`](https://github.com/NixOS/nixpkgs/commit/eb12796851c12259d3a628eda8f8c0a07c455fa9) shadowsocks-v2ray-plugin: 1.3.1 -> 1.3.2
* [`159cf2b7`](https://github.com/NixOS/nixpkgs/commit/159cf2b7dfc881209f6926e7d2ab01b067804cb8) rpm-ostree: 2023.1 -> 2023.2
* [`3374f379`](https://github.com/NixOS/nixpkgs/commit/3374f379ce3021e2add5ead7fed27a3a55f1e09c) media-downloader: 2.8.0 -> 2.9.0
* [`ba4d56e2`](https://github.com/NixOS/nixpkgs/commit/ba4d56e20e434d0ac2f3006d60a549d994b28259) tamarin-prover: install vim-plugin to nvim/site
* [`79c65780`](https://github.com/NixOS/nixpkgs/commit/79c6578005f4eb8cd287a212ff72e0b262ffcf69) fzf: install vim-plugin to nvim/site
* [`78fee034`](https://github.com/NixOS/nixpkgs/commit/78fee034672c1ffe3a570bc8958769a3a784d577) txr: install vim-plugin to nvim/site
* [`4de2b19f`](https://github.com/NixOS/nixpkgs/commit/4de2b19fa184d9c3d5aa158d0923931976441442) boogie: install vim-plugin to nvim/site
* [`b049df00`](https://github.com/NixOS/nixpkgs/commit/b049df0060eb04b93f0b44e18a6a0ac8f6948c4f) html-xml-utils: 8.4 -> 8.5
* [`da95db0a`](https://github.com/NixOS/nixpkgs/commit/da95db0a3a06fda8bd13ff00c3a0a11a6409b3e3) taskwarrior: fix nvim/site installation path
* [`31f52597`](https://github.com/NixOS/nixpkgs/commit/31f52597e5a052ca6e3ea7085cdd59588df47666) charis-sil: 6.101 -> 6.200
* [`28d86311`](https://github.com/NixOS/nixpkgs/commit/28d86311edbdba8588a8e4d6737179faf85726f7) herbstluftwm: fix tests with gcc12
* [`de5d476c`](https://github.com/NixOS/nixpkgs/commit/de5d476c79a274566289b40e9c82b07519d9a3e2) roxctl: 3.73.2 -> 3.73.3
* [`008aeed9`](https://github.com/NixOS/nixpkgs/commit/008aeed915240b6c0a140696b9b440641892bd79) krabby: init at 0.1.6
* [`b23a5794`](https://github.com/NixOS/nixpkgs/commit/b23a5794db78b057cf65cfcd4934a9c2a77aff8d) linux_xanmod: remove LRU option
* [`e8afb655`](https://github.com/NixOS/nixpkgs/commit/e8afb655ba923f0baae5e2b93ed7daf1063a630a) qxmpp: 1.5.1 -> 1.5.2
* [`fd400f54`](https://github.com/NixOS/nixpkgs/commit/fd400f5425f36c49b5592c45866094baeaf88a7f) terracognita: 0.8.1 -> 0.8.2
* [`60ba4760`](https://github.com/NixOS/nixpkgs/commit/60ba476076cd49b050eece5bfaac89720e74b205) vassal: 3.6.13 -> 3.6.14
* [`5b9ed59e`](https://github.com/NixOS/nixpkgs/commit/5b9ed59e80adbf700a76f070556cf3a56e8f1dba) syncthingtray: 1.3.2 -> 1.3.3
* [`a5613d24`](https://github.com/NixOS/nixpkgs/commit/a5613d24efe0d082a23bbb7b828564d843490101) libsForQt5.qtutilities: 6.10.0 -> 6.11.0
* [`c10d18c7`](https://github.com/NixOS/nixpkgs/commit/c10d18c7e74aee0928322ca45087a27ce9183d5d) cpp-utilities: 5.20.0 -> 5.21.0
* [`bfc237b4`](https://github.com/NixOS/nixpkgs/commit/bfc237b4aaf7cd59c838b310fe85f8b4b0f53e62) zfxtop: 0.2.1 -> 0.3.0
* [`afdb49ea`](https://github.com/NixOS/nixpkgs/commit/afdb49eade7af7637688e0a343a6a2e0e6fdad6f) ipfs-cluster: 1.0.5 -> 1.0.6
* [`270c722c`](https://github.com/NixOS/nixpkgs/commit/270c722c89b37b383b144d3d3f4429fbe094fa86) aws-vault: 6.6.2 -> 7.0.0 ([NixOS/nixpkgs⁠#220033](https://github.com/NixOS/nixpkgs/issues/220033))
* [`668f36db`](https://github.com/NixOS/nixpkgs/commit/668f36dbd53aa72348e0187b6d174312ea627b33) ryujinx: 1.1.489 -> 1.1.650
* [`ff048a29`](https://github.com/NixOS/nixpkgs/commit/ff048a29f0565668fd7e9c746f8a57a4b173d9e4) linuxKernel.kernels.linux_zen: 6.2.2-zen1 -> 6.2.2-zen2
* [`41745015`](https://github.com/NixOS/nixpkgs/commit/41745015f68c11694cf7b474db9ccb5de0be6ffa) reaper: 6.75 -> 6.77
* [`ff37d983`](https://github.com/NixOS/nixpkgs/commit/ff37d983b0e343dab0a69ae0602433cdafb13958) linuxKernel.kernels.linux_lqx: 6.1.14-lqx1 -> 6.1.15-lqx2
* [`29da1234`](https://github.com/NixOS/nixpkgs/commit/29da123428dd71f553f8effe28d284d8d57b080b) offpunk: 1.8->1.9
* [`be521607`](https://github.com/NixOS/nixpkgs/commit/be5216077e2ed22cde9af456f90cf0cfdf0358fe) offpunk: install the project's man page
* [`978b7cfd`](https://github.com/NixOS/nixpkgs/commit/978b7cfd6046a8611aeb429ca27cfc886eb91a17) go-licenses: init at 1.6.0
* [`b3fff4bf`](https://github.com/NixOS/nixpkgs/commit/b3fff4bf0fb0f6560ab3c688b05ce6bd52d5f876) marksman: 2023-01-29 -> 2023-03-04
* [`76657296`](https://github.com/NixOS/nixpkgs/commit/76657296600b57277016389a8daa96342e77df06) flyctl: 0.0.477 -> 0.0.478
* [`8e2f599e`](https://github.com/NixOS/nixpkgs/commit/8e2f599ef9110963eee673946f9f887e85f56ae9) mixxx: 2.3.3 -> 2.3.4
* [`79394fd6`](https://github.com/NixOS/nixpkgs/commit/79394fd6901b04c75465b855146f771079033de4) opcr-policy: 0.1.50 -> 0.1.51
* [`084ddae9`](https://github.com/NixOS/nixpkgs/commit/084ddae98b080245249f6ea3a5d9f319ae1877e1) python312: 3.12.0a5 -> 3.12.0a6
* [`a259a281`](https://github.com/NixOS/nixpkgs/commit/a259a28151bc4f8036ad8f63fa36b1c8da485c62) step-kms-plugin: init at 0.7.0
* [`ff28bb10`](https://github.com/NixOS/nixpkgs/commit/ff28bb10554a2e967cde4b5183e0fe02b8c5f8a7) asusctl: 4.5.6 -> 4.5.8
* [`d8d8b55e`](https://github.com/NixOS/nixpkgs/commit/d8d8b55e7dccfe10e99d2f4ed968fa8acaef9b78) nixos/murmur: expose dbus
* [`3d8632ab`](https://github.com/NixOS/nixpkgs/commit/3d8632ab47db91f79703f10c0dfb98bd8273013f) phpunit: 10.0.11 -> 10.0.14
* [`9e5e7780`](https://github.com/NixOS/nixpkgs/commit/9e5e77806a692277da477ca1879e24789350911e) circt: 1.30.0 -> 1.34.0
* [`f421180f`](https://github.com/NixOS/nixpkgs/commit/f421180fa56be1fbc5ce26191ac230ea45dd58c8) discord-canary: 0.0.148 -> 0.0.149
* [`4d40a028`](https://github.com/NixOS/nixpkgs/commit/4d40a028a1f3795e0b8257cab781c8827123abf5) rtorrent: set meta.mainProgram
* [`faa92cd3`](https://github.com/NixOS/nixpkgs/commit/faa92cd30b1079e76b99716aa92df7cc5c552dd6) pkgsCross.ghcjs.haskellPackages.ghc: formally disable shared libs
* [`471b9cab`](https://github.com/NixOS/nixpkgs/commit/471b9cab41b218080f5e9f4abbc83eaaa60c6abf) haskell.compiler.ghcHEAD: 9.7.20221224 -> 9.7.20230217
* [`23dc76fd`](https://github.com/NixOS/nixpkgs/commit/23dc76fd2248d51625f3375d506416415dfba7d6) haskell.compiler.ghcHEAD: fix hadrianFlagsArray handling
* [`97d55ec9`](https://github.com/NixOS/nixpkgs/commit/97d55ec923b0cd3798a6a84e2e0a6b2c6b54f6a9) haskell.compiler.ghcHEAD: drop malformed/redundant hadrian setting
* [`afeb316d`](https://github.com/NixOS/nixpkgs/commit/afeb316dc36c7f104ea43045d77745ab0705c873) wakapi: 2.6.1 -> 2.6.2
* [`64eb9216`](https://github.com/NixOS/nixpkgs/commit/64eb9216d9be5c4239121619d8828b5249b7947f) sarasa-gothic: 0.40.1 -> 0.40.2
* [`9f747c87`](https://github.com/NixOS/nixpkgs/commit/9f747c87f8570f4713f9adb5d1c539e9b25cfb83) qpdf: 11.2.0 -> 11.3.0
* [`30c16853`](https://github.com/NixOS/nixpkgs/commit/30c168537c08c60454ada54db259bdf7cd300b6c) numix-icon-theme-circle: 23.02.28 -> 23.03.04
* [`53d3317f`](https://github.com/NixOS/nixpkgs/commit/53d3317f6d43e3759f4eef365c6a8dfe099570ff) vscode-extensions.ionide.ionide-fsharp: 6.0.5 -> 7.5.1
* [`7dcc825f`](https://github.com/NixOS/nixpkgs/commit/7dcc825f2833465abfdab103bae84b39edfb8d70) openai-whisper-cpp: 1.2.0 -> 1.2.1
* [`f3acb36d`](https://github.com/NixOS/nixpkgs/commit/f3acb36d6407ba549d7bf660ceec7572700f8cc9) proton-caller: 3.1.1 -> 3.1.2
* [`cc53194f`](https://github.com/NixOS/nixpkgs/commit/cc53194fbd775345ae3afee98a827630c2310dc9) python310Packages.pyinsteon: 1.3.3 -> 1.3.4
* [`4e04af68`](https://github.com/NixOS/nixpkgs/commit/4e04af68ea0029237ba55437a869f4de5a03cdf0) home-assistant: 2023.3.1 -> 2023.3.2
* [`ad075bd9`](https://github.com/NixOS/nixpkgs/commit/ad075bd91580666d97ad5125d78c7c5cd32403c4) viceroy: init at 0.3.5
* [`70fa4c65`](https://github.com/NixOS/nixpkgs/commit/70fa4c65696495be22bce506accfca52310f476b) haste-server: ccc5049b07e9f90ec19fc2a88e5056367c53e202 -> b52b394bad909ddf151073987671e843540d91d6
* [`2a7bd670`](https://github.com/NixOS/nixpkgs/commit/2a7bd670fca94169b09c3b966f05ab497e4accfe) cargo-all-features: 1.6.0 -> 1.7.0
* [`4c62f1c7`](https://github.com/NixOS/nixpkgs/commit/4c62f1c7837c7825ce8844b66d000dffd40757d5) maintainers: add longer
* [`e8d6cef1`](https://github.com/NixOS/nixpkgs/commit/e8d6cef1036d4750fa71c092958d8b78314022c5) kubernetes-polaris: init at 7.3.2
* [`f7882319`](https://github.com/NixOS/nixpkgs/commit/f7882319e35a97aa6e5baf618b7b1ed6257876f9) process-viewer: 0.5.6 -> 0.5.8
* [`1312c2db`](https://github.com/NixOS/nixpkgs/commit/1312c2db133b9473a12990ac6051541df0dd81b6) super-productivity: 7.12.2 -> 7.13.1
* [`4bc7e7bd`](https://github.com/NixOS/nixpkgs/commit/4bc7e7bd5d92a9ff3776c7ab2d31c4ef9bec21ec) pulumi-bin: 3.55.0 -> 3.56.0
* [`2f4ea5fa`](https://github.com/NixOS/nixpkgs/commit/2f4ea5fab6dda0199cb5e65d85b5af2eed4de14d) privoxy: 3.0.33 -> 3.0.34
* [`96e08120`](https://github.com/NixOS/nixpkgs/commit/96e0812048ea638686a700dbfd92989456160c27) scaleway-cli: 2.11.1 -> 2.12.0
* [`f12b8acc`](https://github.com/NixOS/nixpkgs/commit/f12b8acc1f945554b25627983113ac4cba970e8a) snappymail: 2.26.3 -> 2.26.4
* [`8853df99`](https://github.com/NixOS/nixpkgs/commit/8853df99bce7498a4bbad5c682097371c60d4bc0) fq: 0.3.0 -> 0.4.0
* [`95b53814`](https://github.com/NixOS/nixpkgs/commit/95b53814cdd8998d504887c445e689089a77d7ad) exploitdb: 2023-03-06 -> 2023-03-08
* [`29c84e0d`](https://github.com/NixOS/nixpkgs/commit/29c84e0d6a21fa22c1da464d2575378af3a6daa7) trufflehog: 3.28.7 -> 3.29.0
* [`1480cd40`](https://github.com/NixOS/nixpkgs/commit/1480cd40981da3986ead8ea0554eb13c47515127) ocamlPackages.merlin: 4.7 → 4.8
* [`91062888`](https://github.com/NixOS/nixpkgs/commit/910628885ca2e638aca003a0d9cff75890460ca8) hipsparse: 5.4.2 -> 5.4.3
* [`239b496f`](https://github.com/NixOS/nixpkgs/commit/239b496fa5179d67536813017860fdb93caef751) g2o: 20201223 -> 20230223
* [`856936ab`](https://github.com/NixOS/nixpkgs/commit/856936abc863e1f9b95368c4ac300b0ac82c4e03) buildRustCrate: add libiconv to nativeBuildInputs on darwin
* [`b4990c98`](https://github.com/NixOS/nixpkgs/commit/b4990c9891e53aabb22504504d890e41f745540d) wasmtime: 6.0.0 -> 6.0.1
* [`b3208451`](https://github.com/NixOS/nixpkgs/commit/b3208451ef21d45ec80eea7fb456fc1d00c64e56) open-pdf-sign: 0.1.3 -> 0.1.4
* [`c4d1f2b7`](https://github.com/NixOS/nixpkgs/commit/c4d1f2b78ca6fc3d23d66be591e4c2d02f31faed) python310Packages.lcgit: init at 0.2.0
* [`b1455c8c`](https://github.com/NixOS/nixpkgs/commit/b1455c8cf4326efc4d0ff59d4c1f287718fc3938) python10Packages.ldapdomaindump: add toPythonApplication
* [`4b0d54ef`](https://github.com/NixOS/nixpkgs/commit/4b0d54ef6d73f410be0358fa9d33154759a9fc7b) kubernetes-helm: 3.11.1 -> 3.11.2
* [`64a0faa7`](https://github.com/NixOS/nixpkgs/commit/64a0faa70032bf4401e80dba27a9c76d681c8934) erigon: 2.39.0 -> 2.40.1
* [`36e5e6be`](https://github.com/NixOS/nixpkgs/commit/36e5e6be647356dcd6b9aa0dd31187135af40d17) redpanda: 22.3.13 -> 23.1.1
* [`e4341d36`](https://github.com/NixOS/nixpkgs/commit/e4341d36239a78b6ca66adc683a61b467b1c93dd) python3Packages.imageio: 2.25.0 -> 2.26.0
* [`cbbc0750`](https://github.com/NixOS/nixpkgs/commit/cbbc0750671cf816cbaf1cde38c7eef075f5c45b) chromiumDev: 112.0.5615.12 -> 112.0.5615.20
* [`d4a78d5f`](https://github.com/NixOS/nixpkgs/commit/d4a78d5f094e0c837b9104f0cd3a4fb2cf966932) texlive: add test for lualatex fonts
* [`a6f6ec73`](https://github.com/NixOS/nixpkgs/commit/a6f6ec738bd03e99cf4efe8553dbe71f25e3cc5f) tabnine: 4.4.245 -> 4.4.265
* [`9ce2e1a4`](https://github.com/NixOS/nixpkgs/commit/9ce2e1a4153746a5b92d5e10858d306e896594af) python310Packages.homeassistant-stubs: Relax home-assistant version
* [`8fbdc129`](https://github.com/NixOS/nixpkgs/commit/8fbdc12942691a7aa5b5b195b1c0c1924ca49c36) terraform: 1.3.9 -> 1.4.0
* [`0701506b`](https://github.com/NixOS/nixpkgs/commit/0701506bf12ecdbec8852f541c4cf47f7b9c015c) codespell: 2.2.2 -> 2.2.4
* [`6d9f07d8`](https://github.com/NixOS/nixpkgs/commit/6d9f07d8fe1b965e9dffdda2ac9638347e8b9bd9) librclone: init at 1.61.1
* [`ea0070a5`](https://github.com/NixOS/nixpkgs/commit/ea0070a5189adcd3e16bd15f0609d34b5abbbcfe) celeste: init at 0.4.6
* [`374fc068`](https://github.com/NixOS/nixpkgs/commit/374fc068ec1fe11c9f638f5fbf1d5cadb855f938) nixos/systemd-oomd: disable systemd-oomd when enableUnifiedCgroupHierarchy is false
* [`bb9b8682`](https://github.com/NixOS/nixpkgs/commit/bb9b8682d526e193e254db8d3b35832c91d6219e) python310Packages.vsure: 2.6.0 -> 2.6.1
* [`55544a3f`](https://github.com/NixOS/nixpkgs/commit/55544a3fd9ec7b018281b20ec0b0c8f29a1b46c3) gh: 2.23.0 -> 2.24.0
* [`637092b8`](https://github.com/NixOS/nixpkgs/commit/637092b8e755f1ee0368016a41f284d22c43f519) intel-compute-runtime: 22.49.25018.24 -> 23.05.25593.11
* [`0572ebb4`](https://github.com/NixOS/nixpkgs/commit/0572ebb43558c8a43c8f209fbdc14d2a2ef0559a) python3Packages.types-ujson: init at 5.7.0.1
* [`ca29761e`](https://github.com/NixOS/nixpkgs/commit/ca29761ef5bc38947d9048b6dc8f3e8c795b6a34) gitlint: 0.18.0 -> 0.19.0
* [`61dcd439`](https://github.com/NixOS/nixpkgs/commit/61dcd43981dccd6b7002031164a288e5db35dfbb) seer: 1.14 -> 1.15
* [`0e3e5f3c`](https://github.com/NixOS/nixpkgs/commit/0e3e5f3c7c97054df06969cc95b352dbcd199d7b) automatic-timezoned: 1.0.68 -> 1.0.69
* [`fe5b3c3e`](https://github.com/NixOS/nixpkgs/commit/fe5b3c3e2d0216796caa875dd85eb52b32aaae00) avalanchego: 1.9.10 -> 1.9.11
* [`b3189634`](https://github.com/NixOS/nixpkgs/commit/b3189634581d204b3c927f1033771cb964fc612f) ssh-to-age: 1.1.1 -> 1.1.2
* [`da14e930`](https://github.com/NixOS/nixpkgs/commit/da14e930c3fd0fc0def8da6ec25cab0b31f964a0) skaffold: 2.1.0 -> 2.2.0
* [`e3a07ea7`](https://github.com/NixOS/nixpkgs/commit/e3a07ea75239a62a26c14ad2672737949af8a50c) gh: 2.24.0 -> 2.24.1
* [`fb4e70b0`](https://github.com/NixOS/nixpkgs/commit/fb4e70b0dcba920df9075254a2a8282b0d30e335) python310Packages.fritzconnection: 1.11.0 -> 1.12.0
* [`2b315453`](https://github.com/NixOS/nixpkgs/commit/2b315453e949af18c900a461cec02892d5a08a00) kodi: 19.4 -> 20.0
* [`0c3c47ab`](https://github.com/NixOS/nixpkgs/commit/0c3c47ab7a8ae1032d5243271365f97bd7698ddc) kodi.packages.inputstream-adaptive: 19.0.7 -> 20.3.2
* [`b520a0cb`](https://github.com/NixOS/nixpkgs/commit/b520a0cb51c268cc332d11b966ee91d465f143f2) kodi.packages.inputstream-ffmpegdirect: 19.0.3 -> 20.5.0
* [`2e3ba1bd`](https://github.com/NixOS/nixpkgs/commit/2e3ba1bda16c9239c444f60ae8368e5be126a096) kodi.packages.inputstream-rtmp: 19.0.1 -> 20.3.0
* [`2ce5a0b1`](https://github.com/NixOS/nixpkgs/commit/2ce5a0b109f1f188c0f86d0bc70289baf53277ef) kodi.packages.joystick: 19.0.1 -> 20.1.0
* [`a3cfb815`](https://github.com/NixOS/nixpkgs/commit/a3cfb8157ffd7ba5534a19721bd1a2c456264a63) kodi.packages.libretro: 19.0.0 -> 20.1.0
* [`c81978e7`](https://github.com/NixOS/nixpkgs/commit/c81978e775867750089b88cbf5e81fe6ba61acd6) kodi.packages.pvr-hdhomerun: 19.1.0 -> 20.4.0
* [`057fd517`](https://github.com/NixOS/nixpkgs/commit/057fd517e710ecf309b63c366c00e0c268b5fad2) kodi.packages.pvr-hts: 19.0.6 -> 20.6.0
* [`7771fe5b`](https://github.com/NixOS/nixpkgs/commit/7771fe5b2191aa97b3745071cc9ef60ace004a2e) kodi.packages.pvr-iptvsimple: 19.2.2 -> 20.6.1
* [`59cb0b24`](https://github.com/NixOS/nixpkgs/commit/59cb0b24577153ce8137f69b3b4efac404d747c0) kodi.packages.vfs-libarchive: 19.0.1 -> 20.1.0
* [`9aa1e31a`](https://github.com/NixOS/nixpkgs/commit/9aa1e31af8c19ab890b4e45616cb38e53378da3d) kodi.packages.vfs-sftp: 19.0.1 -> 20.1.0
* [`7d272783`](https://github.com/NixOS/nixpkgs/commit/7d2727838a8d31fbb4f1339cfc68be75fed144b8) kodi.packages.visualization-waveform: 19.0.3 -> 20.2.1
* [`eae456ae`](https://github.com/NixOS/nixpkgs/commit/eae456ae09ed029506466c09dab7d1108d7b061e) kodi.packages.steam-controller: 0.11.0 -> 20.0.2
* [`e9da3a88`](https://github.com/NixOS/nixpkgs/commit/e9da3a88e81c2272f23290dbbb73f953e30c6c15) firefox-devedition-bin-unwrapped: 111.0b7 -> 111.0b8
* [`78ac44af`](https://github.com/NixOS/nixpkgs/commit/78ac44af766f967a2c9dfb88d13688729fba4595) parallel: 20221222 -> 20230222
* [`9e6a70d0`](https://github.com/NixOS/nixpkgs/commit/9e6a70d060a2bd7ea328cb7aa29bad10456a3d2d) zoom-us: 5.13.10.1208 -> 5.13.11.1288
* [`0397322d`](https://github.com/NixOS/nixpkgs/commit/0397322d80da4a9ee117bde84b8de9e6cce88e22) python310Packages.txi2p-tahoe: init at 0.3.7
* [`3d3db646`](https://github.com/NixOS/nixpkgs/commit/3d3db646809dc690ea676a5ce2baeae7167eb0ed) python310Packages.foolscap: 21.7.0 -> 23.3.0
* [`a6561d82`](https://github.com/NixOS/nixpkgs/commit/a6561d8237921e552b2cea4c05b74bb0b8a98ddf) cppcheck: 2.10.1 -> 2.10.2
* [`95712a73`](https://github.com/NixOS/nixpkgs/commit/95712a7325653631ecf97ab1f18c8101162815ff) cargo-deb: 1.42.1 -> 1.42.2
* [`0c0fe2e9`](https://github.com/NixOS/nixpkgs/commit/0c0fe2e9f14387595f8297cfe6352bccf842b5ad) terraform-providers.cloudflare: 4.0.0 → 4.1.0
* [`991dd6bf`](https://github.com/NixOS/nixpkgs/commit/991dd6bf2a992bd416b9fae69bdbea38c5e4c043) terraform-providers.local: 2.3.0 → 2.4.0
* [`5a79b956`](https://github.com/NixOS/nixpkgs/commit/5a79b9562ff77f1faf04e4a62c0641dbd71eee42) terraform-providers.scaleway: 2.12.1 → 2.13.0
* [`b6f45b0f`](https://github.com/NixOS/nixpkgs/commit/b6f45b0f3198b2ed8ea7d694d1a2e736e0907963) terraform-providers.spotinst: 1.103.0 → 1.104.0
* [`9d48f500`](https://github.com/NixOS/nixpkgs/commit/9d48f5009d59612000c198801d1f03e960a656c1) terraform-providers.oci: 4.110.0 → 4.111.0
* [`a71e4596`](https://github.com/NixOS/nixpkgs/commit/a71e45961e88c8a6dde6287fa1e061f30f8c2fb7) terraform-providers.tencentcloud: 1.79.13 → 1.79.14
* [`897a7425`](https://github.com/NixOS/nixpkgs/commit/897a7425e3bfc73d12a550e16b6ca8882f22e91d) add penalty1083 as maintainer
* [`6f7320ac`](https://github.com/NixOS/nixpkgs/commit/6f7320ac806b262e5e23df79530105b72335787a) geph: init at 4.7.8
* [`b6124a62`](https://github.com/NixOS/nixpkgs/commit/b6124a6283041411fc8454d5800af499ad82fe94) xemu: 0.7.84 -> 0.7.85
* [`47d453b7`](https://github.com/NixOS/nixpkgs/commit/47d453b770cd91efc11ee95eca59577e502900d8) waybox: unstable-2021-04-07 -> 0.2.0
* [`6e825d6f`](https://github.com/NixOS/nixpkgs/commit/6e825d6f548078e07f585d0002559361b2ebc969) sentry-cli: 2.14.3 -> 2.14.4
* [`1ce566b2`](https://github.com/NixOS/nixpkgs/commit/1ce566b2ac50a1077c1d6fb13c44b414946996a2) berglas: 1.0.1 -> 1.0.2
* [`4fb55b05`](https://github.com/NixOS/nixpkgs/commit/4fb55b055dd0d2ca3500b200de2446d842c7d128) ocamlPackages.mirage-fs: use Dune 3
* [`099dccdd`](https://github.com/NixOS/nixpkgs/commit/099dccddc9b02f23a8434e75f7c6480a9e554217) ocamlPackages.mirage-kv: 3.0.1 → 4.0.1
* [`6bbf9ab1`](https://github.com/NixOS/nixpkgs/commit/6bbf9ab16673f8cd656dcca7adef16f06a980125) syncstorage-rs: 0.13.5 -> 0.13.6
* [`cac6d5d8`](https://github.com/NixOS/nixpkgs/commit/cac6d5d8624a190b558eab1fe6029fd216cd289f) wakatime: 1.68.1 -> 1.68.3
* [`e7fe48e8`](https://github.com/NixOS/nixpkgs/commit/e7fe48e8020eab609f59da6b94b26e3a8205a154) airgeddon: 11.10 -> 11.11
* [`3b72d405`](https://github.com/NixOS/nixpkgs/commit/3b72d40509f1d4000cd49292198d7f49eb7cda46) halide: 14.0.0 -> 15.0.0
* [`a58940b3`](https://github.com/NixOS/nixpkgs/commit/a58940b35c31325588802fa70901dc9b290e864b) python310Packages.homeassistant-stubs: 2023.3.1 -> 2023.3.2
* [`dbff810d`](https://github.com/NixOS/nixpkgs/commit/dbff810de84422b5e1351c3d534fbcb5181fe561) ttdl: 3.6.3 -> 3.6.5
* [`bcddd70e`](https://github.com/NixOS/nixpkgs/commit/bcddd70e030d36663ab45a332869f93bc7a1ab17) metal-cli: 0.13.0 -> 0.14.1
* [`5e1088a0`](https://github.com/NixOS/nixpkgs/commit/5e1088a0d4592dd1eeaed63c86e30ca0b1db6634) jaq: 0.9.0 -> 0.10.0
* [`ae09bc0f`](https://github.com/NixOS/nixpkgs/commit/ae09bc0fd305623089d9086ff7802b9a8f4b3d7b) airgeddon: add changelog to meta
* [`48dad033`](https://github.com/NixOS/nixpkgs/commit/48dad033bbbd540fa0e397efd0175ab1ce522dd6) python310Packages.aioairzone: 0.5.2 -> 0.5.3
* [`9984b263`](https://github.com/NixOS/nixpkgs/commit/9984b263bf82339258d405d4e7754df669384eab) exploitdb: 2023-03-08 -> 2023-03-09
* [`88e9562f`](https://github.com/NixOS/nixpkgs/commit/88e9562f2c4027dd961e55b084877be2c1750fe0) python310Packages.peaqevcore: 12.2.7 -> 13.0.0
* [`6cbc7d98`](https://github.com/NixOS/nixpkgs/commit/6cbc7d9832e977099270619396270f19fef07ea2) python310Packages.pymazda: 0.3.7 -> 0.3.8
* [`9fd32c52`](https://github.com/NixOS/nixpkgs/commit/9fd32c52cc4c26009da39236831819ea16a084ed) python310Packages.identify: 2.5.18 -> 2.5.19
* [`2e61c703`](https://github.com/NixOS/nixpkgs/commit/2e61c703f29259d23fb796813ed04867d3caadaf) python310Packages.rns: 0.4.9 -> 0.5.0
* [`3da4f828`](https://github.com/NixOS/nixpkgs/commit/3da4f828a0533cfcdc75a449963d7d552f84303e) python310Packages.scmrepo: 0.1.13 -> 0.1.15
* [`c3a06e83`](https://github.com/NixOS/nixpkgs/commit/c3a06e83b0e1ac04ae0521ca8bbd7cf3d0845cd3) kafkactl: 3.0.3 -> 3.1.0
* [`de470781`](https://github.com/NixOS/nixpkgs/commit/de4707810d0eb970b073ce584906b9752b2d1971) python310Packages.screenlogicpy: 0.8.0 -> 0.8.1
* [`88e884b0`](https://github.com/NixOS/nixpkgs/commit/88e884b06f09cb3faeefdf78ceabe40c5a151b06) kafkactl: add changelog to meta
* [`16bddcfb`](https://github.com/NixOS/nixpkgs/commit/16bddcfbaf8f1942168a553be64a574c635b4622) cri-o: 1.26.1 -> 1.26.2
* [`7c88c18a`](https://github.com/NixOS/nixpkgs/commit/7c88c18a082c20a2ab556488615626c01fac534f) qdrant: 1.0.2 -> 1.0.3
* [`d6e52d26`](https://github.com/NixOS/nixpkgs/commit/d6e52d26b092036423beb029e67283e6fa9c4768) shell-genie: specify license
* [`2aa99214`](https://github.com/NixOS/nixpkgs/commit/2aa9921403ddc795344a3af7f891ddde7f48bc83) datree: 1.8.33 -> 1.8.36
* [`4d15fb3a`](https://github.com/NixOS/nixpkgs/commit/4d15fb3ade85275b6a1404644ef339b7fdd713e4) nixos/tests/installer.nix: fix hydra eval
* [`639825c9`](https://github.com/NixOS/nixpkgs/commit/639825c943b5d5618d2d6be289274d40d8c5f5ac) bats: update 1.8.2 -> 1.9.0
* [`9670b19c`](https://github.com/NixOS/nixpkgs/commit/9670b19ce8f7c23c975a34206bb40e2ace152d09) go-mockery: add package test
* [`e2b1f289`](https://github.com/NixOS/nixpkgs/commit/e2b1f289a30addca193722c525e1a8cfd7b421ce) python310Packages.timeago: 1.0.15 -> 1.0.16
* [`d5a716d4`](https://github.com/NixOS/nixpkgs/commit/d5a716d4d68211f5c8f52b1d3d4b3eab8399d1cc) acr: 2.0.0 -> 2.1.1
* [`1bf1f7a7`](https://github.com/NixOS/nixpkgs/commit/1bf1f7a75fc139db5c500550efd51568a32cf9be) yabasic: 2.90.2 -> 2.90.3
* [`fe12faba`](https://github.com/NixOS/nixpkgs/commit/fe12faba4d9e8d57aea0d2940d756bbd44c7370f) Revert "Merge pull request [NixOS/nixpkgs⁠#217317](https://github.com/NixOS/nixpkgs/issues/217317) from atorres1985-contrib/remove-bqn-mode"
* [`83ebe5b1`](https://github.com/NixOS/nixpkgs/commit/83ebe5b11174dc6ce177a52827132111c184a55b) vala-language-server: aarch64-darwin build
* [`d315cae1`](https://github.com/NixOS/nixpkgs/commit/d315cae1d9906bce34012162548d6a8d7d6f401b) lightning: 2.2.0 -> 2.2.1
* [`13bfde1a`](https://github.com/NixOS/nixpkgs/commit/13bfde1a80811ace038631fb95603733c57a7ad6) redmine: 4.2.9 -> 4.2.10
* [`4e59252a`](https://github.com/NixOS/nixpkgs/commit/4e59252a2a6afaaa8b6d712e4c572ceaac1ded2b) python3Packages.torch: Enable Accelerate.framework on darwin to increase performance
* [`8bc659c5`](https://github.com/NixOS/nixpkgs/commit/8bc659c5b73d3f160987ddee5f0db79d6238f354) zen-kernels: remove myself as maintainer
* [`29590623`](https://github.com/NixOS/nixpkgs/commit/2959062362b8521165a7582660053722b16f3323) coqPackages: various 8.16 -> 8.17
* [`9202661d`](https://github.com/NixOS/nixpkgs/commit/9202661d5b0dc3f8c42080b12f046314e1af808f) minimacy: 0.6.2 -> 0.6.4
* [`031600bf`](https://github.com/NixOS/nixpkgs/commit/031600bf1509cc9b8c87d3f204f4b7f78183c5be) erlangR25: 25.2.3 -> 25.3
* [`551cec9f`](https://github.com/NixOS/nixpkgs/commit/551cec9f1500b1697d8cb519cae6aabb9b54ffd4) cachix: 1.3 -> 1.3.1
* [`0d758c2a`](https://github.com/NixOS/nixpkgs/commit/0d758c2aa116f2eb17ce5cde62c3b1e361a64661) python3Packages.torch: Disable MKLDNN on aarch64-darwin
* [`65af4910`](https://github.com/NixOS…
aarnphm pushed a commit to bentoml/plugins that referenced this pull request Mar 15, 2023
## Changelog for nixpkgs:
Branch: master
Commits: [NixOS/nixpkgs@1eeea1f1...1c03223e](https://github.com/NixOS/nixpkgs/compare/1eeea1f1922fb79a36008ba744310ccbf96130e2...1c03223e5c1cf29a349a47ddf76f14806c048852)

* [`e9ad0246`](https://github.com/NixOS/nixpkgs/commit/e9ad02461516d74b3e53c5fde55bd41f104dcad5) xen: move patches specific for 4.10
* [`2f40c464`](https://github.com/NixOS/nixpkgs/commit/2f40c4647b1bf46abded4136075ea47533906fcb) xen: upgrade to 4.15
* [`9591c917`](https://github.com/NixOS/nixpkgs/commit/9591c9170fd20966e6a5e6f108bc4d4f19fcd25d) xen: bump to 4.15.1
* [`93437909`](https://github.com/NixOS/nixpkgs/commit/93437909af24b6728e447ffbeaef7923f8814f3c) xen: patch 4.15 with XSA-386
* [`f82ceb1c`](https://github.com/NixOS/nixpkgs/commit/f82ceb1c489cf552e668e5a6411ae60a4a475fd6) python310Packages.dvc-http: init at 0.0.1
* [`51ba2337`](https://github.com/NixOS/nixpkgs/commit/51ba23371779e1018fc89573f94ca414c09c4e61) pkgs/stdenv/linux: bootstrap-files for third (and final) mips ABI: n32
* [`efbeb1bb`](https://github.com/NixOS/nixpkgs/commit/efbeb1bb5e90ab3ca2d5184e446cea4fa97c29cb) prometheus-cpp: 1.0.1 -> 1.1.0
* [`57b09f29`](https://github.com/NixOS/nixpkgs/commit/57b09f29c6345f0ca701b79760dfd23443c3a982) vscode-extensions.jellyedwards.gitsweep: init at 0.0.15
* [`00ae655e`](https://github.com/NixOS/nixpkgs/commit/00ae655e639e620ee5dcfd6f1bd9ccb4e337eea1) btrbk: Use sudo or doas based on configuration
* [`3144b00d`](https://github.com/NixOS/nixpkgs/commit/3144b00d2486ca5d85098a688a76a5e945de411d) btrbk: add doas variant of module test
* [`9a848178`](https://github.com/NixOS/nixpkgs/commit/9a8481780b31e101dc941a3d619ce4803dc5d525) libsForQt515.solid: patch binary search paths
* [`a7ea3911`](https://github.com/NixOS/nixpkgs/commit/a7ea3911798120047beb25be107138a0c547dce2) swww: init at 0.5.0
* [`61840f71`](https://github.com/NixOS/nixpkgs/commit/61840f7181bc17f3c808fcae5acc656a2408ab7b) nixos/prometheus: Add new relabel_configs actions
* [`1f9b92b0`](https://github.com/NixOS/nixpkgs/commit/1f9b92b0e6f2dd073f1863d95fd6587448415214) fetchdarcs: fetch by commit hash
* [`67253945`](https://github.com/NixOS/nixpkgs/commit/67253945376ed8ac3dc166c5b3c469cd53deb4e9) maintainers: add cbleslie
* [`a8cfa9b5`](https://github.com/NixOS/nixpkgs/commit/a8cfa9b5a306f7ad0d1df1bed9a649530f6c78e8) monitorcontrol: init at 4.1.0
* [`f88873d8`](https://github.com/NixOS/nixpkgs/commit/f88873d877d17617ed11a8f6aba49db9ae57cdbb) runelite: 2.1.5 -> 2.5.0
* [`d8b19108`](https://github.com/NixOS/nixpkgs/commit/d8b19108efad3992384606dd9afda5cadf195ea1) goku: 0.5.2 -> 0.6.0, fix deps, add aarch64
* [`2f8266e0`](https://github.com/NixOS/nixpkgs/commit/2f8266e02234a6a2e2ce2b939366e63b5369c278) sonic-pi: add updateScript
* [`5988ada8`](https://github.com/NixOS/nixpkgs/commit/5988ada8358cb66b5486889db22aba37caaf4f4c) sonic-pi: add ruby to nativeBuildInputs
* [`0bc74963`](https://github.com/NixOS/nixpkgs/commit/0bc74963f09dc60aefb151d539402dcf5d2833b0) zoneminder: 1.36.28 -> 1.36.32
* [`4c64355f`](https://github.com/NixOS/nixpkgs/commit/4c64355fa3f48800ec36ef0b8c41dd5bcb895d6e) nixos/zoneminder: also run zmupdate "freshen" on start
* [`8093c136`](https://github.com/NixOS/nixpkgs/commit/8093c136a2fadb81a6bc629a33827ed4c39ed55e) nixos/zoneminder: requires `sysvsem` PHP extension
* [`86b48684`](https://github.com/NixOS/nixpkgs/commit/86b48684bb028e551bf6c876d0a0668532ea2f4f) nixos/zoneminder: automatically update Nix store path in config DB
* [`e7383a32`](https://github.com/NixOS/nixpkgs/commit/e7383a32e365371b9d62c30f16089687db7cb5d4) gitlab-pages: Maintain together with the rest of GitLab + add to...
* [`06166c8c`](https://github.com/NixOS/nixpkgs/commit/06166c8c7036fc2df964acd53c60fe0e3b8bcbb6) python3Packages.json-stream-rs-tokenizer: init at 0.4.13
* [`195600bc`](https://github.com/NixOS/nixpkgs/commit/195600bc7e7af3d62867f4729a67271d52148b5c) python3Packages.json-stream: 1.5.1 -> 2.1.1
* [`baf1f129`](https://github.com/NixOS/nixpkgs/commit/baf1f1293b289ce53d9b660465cd68e1a3e00b96) ruby: Fix withPackages on darwin with makeBinaryWrapper
* [`9fdd9729`](https://github.com/NixOS/nixpkgs/commit/9fdd97298b6b8b0a8385ada8b81d9d1d56ed7c34) nixos/java: add binfmt option
* [`e31dea3d`](https://github.com/NixOS/nixpkgs/commit/e31dea3d14e72a445db2c9b22f4ea005c36a5c85) python3Packages.parsimonious: disable benchmark tests that may fail
* [`dbd563b9`](https://github.com/NixOS/nixpkgs/commit/dbd563b9b8c20071075bcdd5912b99486b3fcfa3) nixos/gitlab: Improve support for GitLab Pages
* [`2d4f4e9b`](https://github.com/NixOS/nixpkgs/commit/2d4f4e9bdfdcc69ea19299150db5c26c7aa4e44a) nixos/gitlab: Handle secrets in GitLab Pages config
* [`678eed32`](https://github.com/NixOS/nixpkgs/commit/678eed323ffd90117472cd432ebe85dddaff07f1) nixos/grub: Name initrd-secrets by system, not by initrd
* [`b90cf061`](https://github.com/NixOS/nixpkgs/commit/b90cf0612e5963849d0dfe22e95debe834e9abde) nixos/atop: Remove upgraded logfiles if not replaced
* [`95c17b8e`](https://github.com/NixOS/nixpkgs/commit/95c17b8e72da5b9b668a6fa69cc6ee73151b8d8d) lout: 3.40 -> 3.42.2
* [`218c7795`](https://github.com/NixOS/nixpkgs/commit/218c7795a669d577fc3ae79a571135e5f105793a) nixos/cgit: init
* [`45f06d97`](https://github.com/NixOS/nixpkgs/commit/45f06d9712bdd6ee8084065bbd0776d73982fd6e) nixos/cgit: add package option
* [`6f63865c`](https://github.com/NixOS/nixpkgs/commit/6f63865cf470ce99b36bceacbefbb6886d05be51) dockerTools: Add minimal test case for [NixOS/nixpkgs⁠#214434](https://github.com/NixOS/nixpkgs/issues/214434)
* [`f4e4cac0`](https://github.com/NixOS/nixpkgs/commit/f4e4cac0c86f0e16aac773083aebbfc0e7daea43) dockerTools: Correctly unpack duplicate rootfs diffs
* [`9377f94a`](https://github.com/NixOS/nixpkgs/commit/9377f94ac5c69eaeca0a2a9d13a41ea7f41c0b7d) swww: v0.5.0 -> v0.7.0
* [`a124a517`](https://github.com/NixOS/nixpkgs/commit/a124a517b2e66078143beaae058e394aa5c1acc0) Update pkgs/tools/wayland/swww/default.nix
* [`2a5bf1fc`](https://github.com/NixOS/nixpkgs/commit/2a5bf1fcdfc8658678bc9305677dfa0fda907367) Update pkgs/tools/wayland/swww/default.nix
* [`2bf1fca5`](https://github.com/NixOS/nixpkgs/commit/2bf1fca5ac68b085bbc42f445731791cf5aa3b1b) Update pkgs/tools/wayland/swww/default.nix
* [`68f5e955`](https://github.com/NixOS/nixpkgs/commit/68f5e9554ffa3cfee31786f9a3013ebd8a7d8308) Add maintainers
* [`7c201f6b`](https://github.com/NixOS/nixpkgs/commit/7c201f6b53bf4acc77184d110cd2cfd72d065bae) Add whitespaces for readability.
* [`72cfabf2`](https://github.com/NixOS/nixpkgs/commit/72cfabf2222ed982db3c24b70aec750861561f50) mononoki: 1.3 -> 1.5
* [`0566d27d`](https://github.com/NixOS/nixpkgs/commit/0566d27d03a7b9c285045f57004a6ba2c2613454) coder: fix web frontend building
* [`56ecab70`](https://github.com/NixOS/nixpkgs/commit/56ecab709a5a6e49049c0892a7cc59cfa22bdd98) nixos/coder: init module
* [`eb38ad04`](https://github.com/NixOS/nixpkgs/commit/eb38ad04efae0ebcd7217c4ccace3da0102d85af) dockerTools: ensure runAsRoot script not optimized away in test
* [`c66cabe3`](https://github.com/NixOS/nixpkgs/commit/c66cabe33ea1f969ef9562feeef0a015b83a60b1) dockerTools: use more familiar terminology to describe test image
* [`298c543e`](https://github.com/NixOS/nixpkgs/commit/298c543e55284a3be8e8785302883fb873e005af) dockerTools: Specify 'latest' tag for repeated layer test image
* [`84e04ccf`](https://github.com/NixOS/nixpkgs/commit/84e04ccf8570e9f8072486f7d750d326225c7117) dockerTools: Preprocess layers list before unpack to handle repeated layers
* [`c7fbd40f`](https://github.com/NixOS/nixpkgs/commit/c7fbd40fd152506057d84e3e656dd564164168d2) groff: Add enableIconv and enableLibuchardet option
* [`235d9e21`](https://github.com/NixOS/nixpkgs/commit/235d9e218736a7d930992e7297bef1182d69fd60) lib/licenses.nix: Add cc-by-nc-nd-30
* [`4efb17b5`](https://github.com/NixOS/nixpkgs/commit/4efb17b50b96b9058d646ecec8d632d69d3c9633) dendrite: 0.11.0 -> 0.11.1
* [`f0ddf281`](https://github.com/NixOS/nixpkgs/commit/f0ddf281c593b82a2bd11110e8147ba85a1de70c) sane-backends: 1.1.1 -> 1.2.1
* [`c845a281`](https://github.com/NixOS/nixpkgs/commit/c845a2815fac9fc3ad40a2095aa3d3d129616af1) cargo-pgx: add buildPgxExtension
* [`4e189d76`](https://github.com/NixOS/nixpkgs/commit/4e189d769bdfb7a220da5cd98413d63d5768489a) timescaledb-toolkit: init at 1.14.0
* [`9dc7a05a`](https://github.com/NixOS/nixpkgs/commit/9dc7a05a85a0b051d208f41ddca0f6cdb6e6ff06) cargo-pgx/timescaledb_toolkit: add nixos test
* [`5287f144`](https://github.com/NixOS/nixpkgs/commit/5287f1446fbb227f75f75c2ac5df59c9cd7ca4e6) Apply suggestions from code review
* [`1a2c2846`](https://github.com/NixOS/nixpkgs/commit/1a2c2846b0933b596c51e964acb8a45ab9a13691) lib.path.subpath.join: init
* [`3c486263`](https://github.com/NixOS/nixpkgs/commit/3c4862636fd6a29f69a7b43f82a3cf070a9c650d) linuxPackages.ipu6-drivers: init at 2023-01-17
* [`134e4a64`](https://github.com/NixOS/nixpkgs/commit/134e4a6473a032513c2bea03035342aacaf3f53d) ipu6-camera-bin: init at 2022-11-12
* [`4269391e`](https://github.com/NixOS/nixpkgs/commit/4269391e56b015472b8f238c1ae52442e168348f) ipu6-camera-hal: init at 2023-01-09
* [`c4c9f600`](https://github.com/NixOS/nixpkgs/commit/c4c9f600e7a09bb0044fc10ea3ae62a3c65b76b5) gst_all_1.icamerasrc: init at 202212109
* [`9b4f6d4d`](https://github.com/NixOS/nixpkgs/commit/9b4f6d4d9278632b1e6c28e83ed9764bd0387c43) linuxPackages.ivsc-driver: init at 2023-01-06
* [`6b338572`](https://github.com/NixOS/nixpkgs/commit/6b3385723874fc580a854701292a9a0c7ede4482) ivsc-firmware: init at 2022-11-02
* [`b38d6054`](https://github.com/NixOS/nixpkgs/commit/b38d6054d789ec8f12a11ed7c2107ce770be7a98) linuxPackages.ipu6-drivers: Reuse ivsc-driver source
* [`731053d8`](https://github.com/NixOS/nixpkgs/commit/731053d8aa1624475779065ef17294c54af072e4) services.cachix-watch-store: fix description of compressionLevel
* [`bacfd9df`](https://github.com/NixOS/nixpkgs/commit/bacfd9df0915c8bb5c4b40234d9cd980196f2398) bitwig-studio: 4.4.6 -> 4.4.8
* [`ee89f8e1`](https://github.com/NixOS/nixpkgs/commit/ee89f8e1e558c2021a7bea8a7dd50b9521afb772) navidrome: 0.49.1 -> 0.49.3
* [`51417891`](https://github.com/NixOS/nixpkgs/commit/514178918f7f97a066911c0ce3fc2d41f550a934) 0.7.0 -> 0.7.2
* [`b3b79fc4`](https://github.com/NixOS/nixpkgs/commit/b3b79fc41eba5f31467bd5aa568ee52a5202ca7a) linuxPackages.systemtap: 4.5 -> 4.8
* [`0061f844`](https://github.com/NixOS/nixpkgs/commit/0061f844c9bbc993606eecd79243a07fb358443e) onlyoffice-documentserver: 7.3.0 -> 7.3.2
* [`72840a9f`](https://github.com/NixOS/nixpkgs/commit/72840a9f2f118c91f1421b8e8773fda576ea9114) peek: switch to ffmpeg-full
* [`fef1cfb0`](https://github.com/NixOS/nixpkgs/commit/fef1cfb05a1fa5596591058fe56fbb120b83d550) python3Packages.grpcio: Fix build parallelism
* [`f83f0f8d`](https://github.com/NixOS/nixpkgs/commit/f83f0f8dfaf0f7ec853597fa236340bc1873d315) python3Packages.mixins: init at 0.1.4
* [`e78dc938`](https://github.com/NixOS/nixpkgs/commit/e78dc938d81cc175f4af9da0d94771c39aa43cd5) nixos/qemu-vm: fix minor typo
* [`9f57a615`](https://github.com/NixOS/nixpkgs/commit/9f57a615e4f912c83d3f66d8e051c1b18b6ba2d3) nifi: 1.16.3 -> 1.20.0
* [`4d547243`](https://github.com/NixOS/nixpkgs/commit/4d547243a283353e7cb1c39fe76efa66f18ecf3c) signal-desktop: 6.5.1 -> 6.7.0, signal-desktop-beta: 6.6.0-beta.1 -> 6.8.0-beta.1
* [`2c7af955`](https://github.com/NixOS/nixpkgs/commit/2c7af95567179d59340bf54800642b851133dd3c) pre-commit: 2.20.0 -> 3.1.0
* [`4b9857d4`](https://github.com/NixOS/nixpkgs/commit/4b9857d413bf41d8e0036a4bee891621fc505127) calls: 43.2 -> 43.3
* [`1e2257a4`](https://github.com/NixOS/nixpkgs/commit/1e2257a4584ee372ab772741e5546bed6244d591) maintainers: update lunik1's gpg key
* [`91294961`](https://github.com/NixOS/nixpkgs/commit/912949612371d0d6a26640992f13dfbec3c06711) libheif: 1.14.2 -> 1.15.1
* [`eddb6a1b`](https://github.com/NixOS/nixpkgs/commit/eddb6a1b6241303c0310993294662e9347a2435d) hunspell: fix spanish-language dictionaries
* [`c4fc77a0`](https://github.com/NixOS/nixpkgs/commit/c4fc77a0c987f48f4927bbbbd295ed3ecafd94c0) python3Packages.qtile-extras: init at 0.22.1
* [`4c8b75ed`](https://github.com/NixOS/nixpkgs/commit/4c8b75ed9a4a2583b1b8f58745852d0f4fa49fcc) dotnetPackages.Nuget: 5.6.0.6489->6.3.1.1
* [`f388236a`](https://github.com/NixOS/nixpkgs/commit/f388236ab2b1c8b25220492e8774bdf3de69ce3f) python310Packages.sentry-sdk: 1.15.0 -> 1.16.0
* [`476b6f8d`](https://github.com/NixOS/nixpkgs/commit/476b6f8d6c69084280fa691fdd7b12109fe0534d) python310Packages.deid: init at 0.3.21
* [`0acc6df7`](https://github.com/NixOS/nixpkgs/commit/0acc6df7423fc042f29a0df8a3c39249b2e901e9) refactor: Add spacing around tests
* [`73981dd9`](https://github.com/NixOS/nixpkgs/commit/73981dd9c24d3b7529c12ea83c4d59c1377a2b99) feat: Create desktop item for `appimage-run`
* [`5648b252`](https://github.com/NixOS/nixpkgs/commit/5648b252998033358685ddc987450b59bb6d8dfd) maintainers: change email, add matrix
* [`a3059850`](https://github.com/NixOS/nixpkgs/commit/a3059850c5d6b53975d85e00b879819e1e3585e3) zix: init at unstable-2023-02-13
* [`03bd6304`](https://github.com/NixOS/nixpkgs/commit/03bd63043fe664316f479fc0a548e903432fbb0f) deepin.dtkgui: don't propagate librsvg and freeimage
* [`e3c84efc`](https://github.com/NixOS/nixpkgs/commit/e3c84efc8ebd908b29b1be9f63db8139b3437608) deepin.deepin-terminal: 5.4.34 -> 5.9.40
* [`118bdf25`](https://github.com/NixOS/nixpkgs/commit/118bdf25a6c572dd2fd29d10b1ae2e4d9a95b907) lib/modules: Allow an "anonymous" module with key in disabledModules
* [`735b57d9`](https://github.com/NixOS/nixpkgs/commit/735b57d962bf61f5457f48e8d8e16da56ff1d88a) linuxPackages.tuxedo-keyboard: 3.1.1 -> 3.1.4
* [`b7d8c463`](https://github.com/NixOS/nixpkgs/commit/b7d8c4630206d113c8cbe22d0ff80be5189a7655) haskellPackages.ghc: 9.2.6 -> 9.2.7
* [`499be580`](https://github.com/NixOS/nixpkgs/commit/499be5802684091917e14e6e320504d5c770b990) haskellPackages: stackage LTS 20.11 -> LTS 20.12
* [`a8abc9e5`](https://github.com/NixOS/nixpkgs/commit/a8abc9e550782b512a0ea20fcda3d10c72b65f64) all-cabal-hashes: 2023-02-19T09:15:19Z -> 2023-03-01T16:43:25Z
* [`bc6029b2`](https://github.com/NixOS/nixpkgs/commit/bc6029b2d1ecc649e9d8b8bab6c5d3c7167df04c) haskellPackages: regenerate package set based on current config
* [`50e7b4bf`](https://github.com/NixOS/nixpkgs/commit/50e7b4bfce7218d1700e3cc420d063ebfbfc04fe) haskellPackages.haskell-gi: use hackage2nix generated 0.26.3 expr
* [`ed65e11b`](https://github.com/NixOS/nixpkgs/commit/ed65e11bac2fde631de8b76a5dddef8aabef2761) haskellPackages.Cabal_3_8_1_0: drop obsolete override
* [`ca44f048`](https://github.com/NixOS/nixpkgs/commit/ca44f0485c6135d1a1be5f9a3ac7ab1b18c24752) python310Packages.questionary: increase open files for testing
* [`5a86855e`](https://github.com/NixOS/nixpkgs/commit/5a86855e006de9420ed5b2f799900bbefb691e53) haskell.packages.*: reflect terminfo update for cross compilation
* [`74ff13b1`](https://github.com/NixOS/nixpkgs/commit/74ff13b12d2762c997ab418f39e81a3fdd909298) haskellPackages.espial: drop upstreamed patch
* [`21b99329`](https://github.com/NixOS/nixpkgs/commit/21b993296fbfd80543fbe14fa0ff6b093ba54502) haskellPackages: reflect haskelline 0.8.2 -> 0.8.2.1
* [`7f2ac905`](https://github.com/NixOS/nixpkgs/commit/7f2ac90596a220c22c28908f0e402d7b09a44951) haskell.packages.ghc94.primitive: 0.7.4.0 -> 0.8.0.0
* [`295066c4`](https://github.com/NixOS/nixpkgs/commit/295066c43d74b2ac73439dcc1d17639d2e55298b) haskell.packages.ghc94.aeson: 2.1.1.0 -> 2.1.2.1
* [`335f3cf3`](https://github.com/NixOS/nixpkgs/commit/335f3cf3906b77a5e0d73dc435b4177c1f50a67d) haskell.packages.ghc94.lens: 5.2 -> 5.2.1
* [`28e1929f`](https://github.com/NixOS/nixpkgs/commit/28e1929fb013cea5aad7ad3ed8daa1cb34a5fe84) git-annex: update sha256 for 10.20230227
* [`fa651582`](https://github.com/NixOS/nixpkgs/commit/fa651582867b2ebd01d87472febcf539996d8e6b) elmPackages.elm-format: reflect text 2.0.1 -> 2.0.2
* [`73665ef4`](https://github.com/NixOS/nixpkgs/commit/73665ef4e43f658edaff4421dd87ec7e19d02923) i3status-rust: 0.22.0 -> 0.30.4
* [`1bf8d63f`](https://github.com/NixOS/nixpkgs/commit/1bf8d63f8fe9b48225ed58a561b991bc4ba00398) openai-full: create variant that includes optional deps
* [`d1949033`](https://github.com/NixOS/nixpkgs/commit/d19490339b900fff1de43876702964f3d41557ea) carla: 2.5.1 -> 2.5.3
* [`c0680473`](https://github.com/NixOS/nixpkgs/commit/c068047330d4c72cca53bf3a3d383bf8896bbcd0) carla: remove python3Packages and gtk2, gk3 assertions
* [`410971fc`](https://github.com/NixOS/nixpkgs/commit/410971fc3597ede8a23e829487847ad35641e69b) zrythm: 1.0.0-alpha.28.1.3 -> 1.0.0-beta.4.5.62
* [`a48211c3`](https://github.com/NixOS/nixpkgs/commit/a48211c319dc9520dbabfd20bd2001f991fd898e) microsoft-edge: fix file picker and `subsituteInPlace`
* [`0367cc8b`](https://github.com/NixOS/nixpkgs/commit/0367cc8b5a7d4e6e62ca7c9f429f8a1901194297) nixos/profiles/base: remove duplicate systemPackages
* [`2c126112`](https://github.com/NixOS/nixpkgs/commit/2c1261127770f1886e49903742e4e989fdae6ad2) phoc: 0.21.1 -> 0.25.0
* [`2455dfab`](https://github.com/NixOS/nixpkgs/commit/2455dfab0da8bb2158d9c404ec13ccf42250ed3e) phosh: 0.23.0 -> 0.25.1
* [`a10d6761`](https://github.com/NixOS/nixpkgs/commit/a10d67619900daa500e010a3c68c1e7799c32eb8) llvm: tighten platforms
* [`3e3367aa`](https://github.com/NixOS/nixpkgs/commit/3e3367aa6a18cf4ec4c79c21f36eec150b3d7939) nixos/profiles/base: remove duplicate and optimize fsPackages
* [`2100c492`](https://github.com/NixOS/nixpkgs/commit/2100c4926200b1ebbee032ad22113597195932f2) endless-sky:0.9.14 -> 0.9.16.1
* [`fa8ecdce`](https://github.com/NixOS/nixpkgs/commit/fa8ecdced8888122a4ec14c8e652d350b2c97fd1) monocraft: 1.4 -> 2.4
* [`9acd60aa`](https://github.com/NixOS/nixpkgs/commit/9acd60aa46f21b69bb96842daac48c4414eaac89) valent: init at unstable-2023-03-02
* [`e9041742`](https://github.com/NixOS/nixpkgs/commit/e9041742ff895927c20b1c3bf04b012184839ffc) haskellPackages.drunken-bishop: unbreak (jail-break)
* [`b373d299`](https://github.com/NixOS/nixpkgs/commit/b373d299bae89922f2bde5f351b90495b182daf2) docs/rust: improve docs for nightly usage
* [`fcc10ee9`](https://github.com/NixOS/nixpkgs/commit/fcc10ee9a4891ea20194fa8178d55786439fd73a) cargo-binutils: don't recommend nixpkgs-mozilla
* [`35081a77`](https://github.com/NixOS/nixpkgs/commit/35081a77d56c84bea79bc810a825179357d68658) cargo-llvm-cov: don't recommend nixpkgs-mozilla
* [`2c02d0ba`](https://github.com/NixOS/nixpkgs/commit/2c02d0ba11687d5ecca95ac33b1e9227f920ac3c) mongosh: 1.6.2 -> 1.8.0, use buildNpmPackage
* [`14c10906`](https://github.com/NixOS/nixpkgs/commit/14c10906dbadc239ae2ecfced6f1dcb9b602da11) btrfs-progs: 6.1.3 -> 6.2.1
* [`6428223c`](https://github.com/NixOS/nixpkgs/commit/6428223c0ec203dc80716f100f89985bc4caafb2) cgreen: take maintenance
* [`abedfdd3`](https://github.com/NixOS/nixpkgs/commit/abedfdd3da6c1a301f23556f06936490e69c070a) maintainers: remove nichtsfrei
* [`fa06318a`](https://github.com/NixOS/nixpkgs/commit/fa06318a46c6110eb5395ffcb0270fca38da09f1) ndn-cxx: unpin openssl_1_1
* [`7e13b629`](https://github.com/NixOS/nixpkgs/commit/7e13b629c733ed7510c8d5fe3c77dce1316c1460) ndn-tools: unpin openssl_1_1
* [`1c430957`](https://github.com/NixOS/nixpkgs/commit/1c430957694840e5771297c5ef7506492dabd270) haskell.packages.ghc94.primitive: Pin to 0.7.4.0
* [`bb5370b8`](https://github.com/NixOS/nixpkgs/commit/bb5370b8b33570e62347a958e309c0161c271db8) nixos/modules/installer/netboot/netboot-minimal: reduce closure size
* [`48eab73b`](https://github.com/NixOS/nixpkgs/commit/48eab73bb6145dc3e78325fc1bda679ba5c8645a) python310Packages.eradicate: update meta
* [`57e21e88`](https://github.com/NixOS/nixpkgs/commit/57e21e88b204c55eac1569807dd974741beffb5f) python310Packages.eradicate: disable on unsupported Python releases
* [`e1806091`](https://github.com/NixOS/nixpkgs/commit/e1806091d7374613c403414ae0debb58e6a7c814) python310Packages.eradicate: 2.1.0 -> 2.2.0
* [`0f1483d1`](https://github.com/NixOS/nixpkgs/commit/0f1483d1a261a1f7f9a3ac109a16cdff68312db4) python310Packages.lineedit: init at 0.1.6
* [`9e3db173`](https://github.com/NixOS/nixpkgs/commit/9e3db1731f248bd604dec537d08196ff361dd5b2) localsend: init at 1.8.0
* [`ca9f0682`](https://github.com/NixOS/nixpkgs/commit/ca9f0682fdbaf70454be9c1dd51250a0065233bd) nixos/systemd-boot: always use profile_path() for system closure paths
* [`73f2d007`](https://github.com/NixOS/nixpkgs/commit/73f2d0074aa039a40fd11ffcce6495568528c56e) python310Packages.rchitect: init at 0.3.40
* [`e730867d`](https://github.com/NixOS/nixpkgs/commit/e730867dc051f9f9f6bd0b641838a24b74cad4c8) python310Packages.radian: init at 0.6.4 and provide radianWrapper
* [`32907346`](https://github.com/NixOS/nixpkgs/commit/3290734615c91f490550d8336e4cf14d897b2027) pkgsStatic.iproute2: fix build (disable shared libraries)
* [`3c4b76f4`](https://github.com/NixOS/nixpkgs/commit/3c4b76f46e2a7301b516df31d6024782eba9ba07) katawa-shoujo: init at 1.3.1
* [`33c3687d`](https://github.com/NixOS/nixpkgs/commit/33c3687d221b4be03e9a891636d8c25401c3317b) vscodium: 1.75.0.23033 -> 1.76.0.23062
* [`6a1da3b2`](https://github.com/NixOS/nixpkgs/commit/6a1da3b21ac581ffec660940d75107f3c979df15) python3Packages.openaiauth: init at 0.3.2
* [`823e822a`](https://github.com/NixOS/nixpkgs/commit/823e822aeec15abad61d2b56ee2bf8130a9e34d4) mdbook: 0.4.26 -> 0.4.28
* [`5edaf690`](https://github.com/NixOS/nixpkgs/commit/5edaf6903cee9c187d3ad191c440e38f5ba1406d) taskell: unbreak build
* [`c54e5071`](https://github.com/NixOS/nixpkgs/commit/c54e50710205e56d0a5ccd60ed68f84398b54b8e) taskell: remove doJailbreak
* [`09f2c45f`](https://github.com/NixOS/nixpkgs/commit/09f2c45f6ba57a85d98b0c02cababd6034fd401f) diagrams-gtk: unbreak build
* [`782f4c77`](https://github.com/NixOS/nixpkgs/commit/782f4c779a1aec781fe2747f809964f9b6c0895f) cloud-hypervisor: 29.0 -> 30.0
* [`58244e97`](https://github.com/NixOS/nixpkgs/commit/58244e97c2978648868f1d253c47192bcf4b0756) haskellPackages: regenerate package set based on current config
* [`bf864baa`](https://github.com/NixOS/nixpkgs/commit/bf864baaa28514dbd4714fcfeb5714e7f3af4343) python310Packages.django-ipware: 4.0.2 -> 5.0.0
* [`62821edd`](https://github.com/NixOS/nixpkgs/commit/62821edd2e685be68ece5dd50af4b493a4fa9dba) This PR sets default SPARK_HOME and JAVA_HOME for R's sparklyr package using a patch in .onload. Preset value take precedence. SPARK_HOME points to python3Packages.pyspark rather than pkgs.spark because the former is actively maintained.
* [`ad920652`](https://github.com/NixOS/nixpkgs/commit/ad9206529272709d983822f7661bcc8b2ab343c8) element-{web,desktop}: hack to make ofborg maintainer pings work again
* [`a6ad4d51`](https://github.com/NixOS/nixpkgs/commit/a6ad4d5146fdb18c504102e45c842a667eb40d41) python310Packages.django-ipware: add changelog to meta
* [`2d91c09a`](https://github.com/NixOS/nixpkgs/commit/2d91c09a03dcde05ab350e8e7849f55dd3bc97a6) python310Packages.django-ipware: disable on unsupported Python releases
* [`df70514c`](https://github.com/NixOS/nixpkgs/commit/df70514c973227bf1be0b758ecec7a743e0cd0c8) git-workspace: 1.1.0 -> 1.2.1
* [`5f60ed18`](https://github.com/NixOS/nixpkgs/commit/5f60ed186f842d4818de7a6615ad64dbc1c56294) kubelogin-oidc: 1.26.0 -> 1.27.0
* [`3af39763`](https://github.com/NixOS/nixpkgs/commit/3af397636d07d949148e610c278060c7c0c8fb96) evcc: 0.114.0 -> 0.114.1
* [`a6462d10`](https://github.com/NixOS/nixpkgs/commit/a6462d104a8d7004df933c892c9cf2d42c48ee97) iosevka-bin: 19.0.1 -> 20.0.0
* [`14622349`](https://github.com/NixOS/nixpkgs/commit/14622349154c73938ac2b385be92518235e92a0d) hue-plus: init at 1.4.5
* [`a233af68`](https://github.com/NixOS/nixpkgs/commit/a233af68773ab7dbf6157a612ae0eaed02abe98c) android-tools: 33.0.3p2 -> 34.0.0
* [`983d0143`](https://github.com/NixOS/nixpkgs/commit/983d0143d07d494d10cb7368d18852aa815fb3f5) autorestic: 1.7.6 -> 1.7.7
* [`6ced8d96`](https://github.com/NixOS/nixpkgs/commit/6ced8d96e3912ce4b9c5583c6e19667814a3fa9e) bluejeans-gui: 2.31.0.83 -> 2.32.1.3
* [`3966519d`](https://github.com/NixOS/nixpkgs/commit/3966519d12be2fb3fded3420f1cc82d681b17b5d) libreoffice: wrapper.nix rewrite
* [`16818343`](https://github.com/NixOS/nixpkgs/commit/16818343f11972ed7f591080992ba146790cc2f1) maintainers: add apfelkuchen6
* [`481f02f7`](https://github.com/NixOS/nixpkgs/commit/481f02f7dd1b21ddfc363ec30b99fcfac04deaec) mpv: allow scripts to add wrapper args
* [`a4c91d19`](https://github.com/NixOS/nixpkgs/commit/a4c91d198cf2bea44784d578324325e2b21411e4) coreboot-utils: 4.14 -> 4.19
* [`be1d82d5`](https://github.com/NixOS/nixpkgs/commit/be1d82d5ca6c3e80442d91b1a45af66776326495) python310Packages.openapi-schema-validator: 0.3.4 -> 0.4.3
* [`f1479a8e`](https://github.com/NixOS/nixpkgs/commit/f1479a8e9ff0c57a4d90b7ea1a86777be152330c) python310Packages.openapi-spec-validator: 0.5.1 -> 0.5.5
* [`9ca5356d`](https://github.com/NixOS/nixpkgs/commit/9ca5356d8d4475a12e9ad4d3d611fddbc02d4aa6) python310Packages.openapi-core: 0.16.6 -> 0.17.0
* [`2689297c`](https://github.com/NixOS/nixpkgs/commit/2689297c50e2041d7f1846580f6bd4d784cd45f9) rustpython: 2022-10-11 -> 0.2.0
* [`851e7062`](https://github.com/NixOS/nixpkgs/commit/851e70627a9c4c22dd77bc182b5d1feda59ceea3) python310Packages.evtx: fix build on darwin
* [`bb5edc48`](https://github.com/NixOS/nixpkgs/commit/bb5edc482e691dbf9d0a28348684b2af611c6711) rustpython: fix build on aarch64-linux
* [`7e29e1b2`](https://github.com/NixOS/nixpkgs/commit/7e29e1b2c2cb2adb79783f2393553fbfd52175c5) postgresqlPackages.timescaledb: 2.10.0 -> 2.10.1
* [`ea593627`](https://github.com/NixOS/nixpkgs/commit/ea593627b9df5925f6a9c78698daedbaf2536753) python310Packages.pydata-sphinx-theme: 0.13.0 -> 0.13.1
* [`f6546a76`](https://github.com/NixOS/nixpkgs/commit/f6546a76559371bd690c30e4c4db8f898704ac31) python310Packages.jupyter-book: 0.14.0 -> 0.15.0
* [`fc9ceeba`](https://github.com/NixOS/nixpkgs/commit/fc9ceeba82d0f5c0b4be97ee333e58c41b7ab67d) brakeman: 5.4.0 -> 5.4.1
* [`f613d92a`](https://github.com/NixOS/nixpkgs/commit/f613d92a67fb0872bdb4f622e32183058f262778) smimesign: 0.1.0 -> 0.2.0
* [`70073985`](https://github.com/NixOS/nixpkgs/commit/70073985ae856f777639a4742943f48b317d7799) nixos/gemstash: init module
* [`14af7c5a`](https://github.com/NixOS/nixpkgs/commit/14af7c5a37dcb5c09e13b458ca54a794b8641df2) directx-shader-compiler: 1.7.2212 -> 1.7.2212.1
* [`46b4fad0`](https://github.com/NixOS/nixpkgs/commit/46b4fad03e60e68a728ace81aaf8db2b6af7d31a) conftest: 0.39.1 -> 0.39.2
* [`3e79b30f`](https://github.com/NixOS/nixpkgs/commit/3e79b30f642ccaf6b3f25c851ada5b34d94f42ed) browserpass: 3.0.10 -> 3.1.0
* [`7ed8c4cb`](https://github.com/NixOS/nixpkgs/commit/7ed8c4cbade056a7835876106a6b36f2b84fb113) obs-studio-plugins.advanced-scene-switcher: init at 1.20.5
* [`a3dcdef4`](https://github.com/NixOS/nixpkgs/commit/a3dcdef4a78b4a459fd0aa06d99ad82623826131) chezmoi: 2.31.0 -> 2.31.1
* [`bb26db7d`](https://github.com/NixOS/nixpkgs/commit/bb26db7dd930499c3a759623ee05473953094cfd) python310Packages.nestedtext: add changelog to meta
* [`49a67605`](https://github.com/NixOS/nixpkgs/commit/49a676052101f4b2206a2b559181ab6050c0eac4) python310Packages.nestedtext: equalize
* [`dba4f381`](https://github.com/NixOS/nixpkgs/commit/dba4f3816648b2a1a53df0b7b4ad23619d97e7f7) python310Packages.nestedtext: disable on unsupported Python releases
* [`6509273d`](https://github.com/NixOS/nixpkgs/commit/6509273d853b8d0b3d90fe5edfd43397525b1753) python310Packages.nestedtext: 1.2 -> 3.5
* [`cab5d3d7`](https://github.com/NixOS/nixpkgs/commit/cab5d3d75b6488ce5614b7e4fd074f74919a4363) circleci-cli: 0.1.23667 -> 0.1.23816
* [`d6630686`](https://github.com/NixOS/nixpkgs/commit/d6630686893dc78f4d2ab908d845cae131443224) python310Packages.parametrize-from-file: disable failing test
* [`2a68c63f`](https://github.com/NixOS/nixpkgs/commit/2a68c63fc6c89ee7b9039e63cb612eea9dbc0c01) stunnel: 5.67 -> 5.69
* [`546adc67`](https://github.com/NixOS/nixpkgs/commit/546adc67e70ce0b1aa6a34ad2ccc0238548320ed) organicmaps: 2023.01.25-3 -> 2023.03.05-5
* [`f59d3afc`](https://github.com/NixOS/nixpkgs/commit/f59d3afcd5e0d0e7e763155254b89ef115ecb654) organicmaps: add updateScript
* [`0fd67b46`](https://github.com/NixOS/nixpkgs/commit/0fd67b467ad31cb7af901989df3e5e4a59f9e91d) gobgp: 3.11.0 -> 3.12.0
* [`79394475`](https://github.com/NixOS/nixpkgs/commit/7939447527bf256129c8b44883f31edb261de165) Update pkgs/development/r-modules/default.nix
* [`49878856`](https://github.com/NixOS/nixpkgs/commit/49878856e6cde3ae674f470da407e3bde2f55c9d) https://github.com/NixOS/nixpkgs/pull/188334#issuecomment-1445425412
* [`e34328aa`](https://github.com/NixOS/nixpkgs/commit/e34328aa3a0949f955ee96317c3bcf70f5c5ec07) netcoredbg: 2.0.0-895 -> 2.2.0-961
* [`c0a2b57e`](https://github.com/NixOS/nixpkgs/commit/c0a2b57e200e41f4b33af9e2f14a4b861c88811d) maintainers: add konradmalik
* [`20b50b7a`](https://github.com/NixOS/nixpkgs/commit/20b50b7a8f853f209421c8951617b376e2e819b5) jabref: 5.7 -> 5.9
* [`66b05cfb`](https://github.com/NixOS/nixpkgs/commit/66b05cfb9a00cfd8ec246e9591d5afbea7adca2e) dbmate: 1.16.2 -> 2.0.1
* [`23e0077d`](https://github.com/NixOS/nixpkgs/commit/23e0077d3653757c405a848d07ddbd37507a7ece) fizz: 2023.02.27.00 -> 2023.03.06.00
* [`8cab427e`](https://github.com/NixOS/nixpkgs/commit/8cab427e63b126cae4a7067d41e6e0c456b3b1e2) megacmd: 1.5.1 -> 1.6.0
* [`04a5d95d`](https://github.com/NixOS/nixpkgs/commit/04a5d95dbf13ed3776edc7c24927cf76975f37aa) maintainers: add milran
* [`42cda97c`](https://github.com/NixOS/nixpkgs/commit/42cda97c500b54ad2e8617d515cc198a027dceaa) gqlgenc: init at 0.11.3
* [`af13b8f8`](https://github.com/NixOS/nixpkgs/commit/af13b8f8523a6c2f74a207210f30d8c9f54ec3cd) boca: 1.0.6a -> 1.0.7
* [`19f0a78c`](https://github.com/NixOS/nixpkgs/commit/19f0a78c195223e7021ff4d16bad71c6f4cb981d) mpvScripts.uosc: init at 4.6.0
* [`b85c1e31`](https://github.com/NixOS/nixpkgs/commit/b85c1e319e28161044e0ca1a33cdb69310d1e93f) node2nix: pull in patch to fix bin scripts with crlf line-endings
* [`0835e5a1`](https://github.com/NixOS/nixpkgs/commit/0835e5a189bf0ae676ccfd91afaf0e6c39c65b28) nodePackages: regen only node-env
* [`94ce5a87`](https://github.com/NixOS/nixpkgs/commit/94ce5a875a001d285537a8757fd6e63d6b3f93f3) pkgs/tools/wayland: enable strictDeps
* [`47ace7b0`](https://github.com/NixOS/nixpkgs/commit/47ace7b0af442b2e6bdb8728330622c7dbc81499) pkgs/tools/nix: enable strictDeps
* [`2ba99961`](https://github.com/NixOS/nixpkgs/commit/2ba999615a0a558660a4eb00d42704566223264d) psql2csv: init at 0.12
* [`2f430da1`](https://github.com/NixOS/nixpkgs/commit/2f430da1c6aaeb4306427b77f139f53dcd729e08) Replacing MRAN mirror with posit
* [`22cf9cd0`](https://github.com/NixOS/nixpkgs/commit/22cf9cd0112c9765d99226e38bdce9b7d82fba7d) sfeed: 1.6 -> 1.7
* [`25939765`](https://github.com/NixOS/nixpkgs/commit/25939765180ed716662ed2c441ebe2506202cd8b) csdr: 0.18.0 -> 0.18.1
* [`bd7bc857`](https://github.com/NixOS/nixpkgs/commit/bd7bc857e3da164df6686be04a3cefa6a2a67cc0) matrix-appservice-slack: 2.1.0 -> 2.1.1
* [`bc3335af`](https://github.com/NixOS/nixpkgs/commit/bc3335af8b5aff0c20551b7b5c932ecf83b9e17f) matrix-appservice-slack: add chvp to maintainers
* [`70ec07b9`](https://github.com/NixOS/nixpkgs/commit/70ec07b998ba7bb60f2a2b5872d3b46c72fb052a) haskell.packages.ghc94.aeson: allow quickcheck-instances 0.3.28
* [`7e1bcf5f`](https://github.com/NixOS/nixpkgs/commit/7e1bcf5f38a361828604e68efc98825ee0e060c2) glooctl: 1.13.8 -> 1.13.9
* [`b1e6e553`](https://github.com/NixOS/nixpkgs/commit/b1e6e553faf3276ec478ae47878b0dab19504342) trivial-builders.writeShellApplication: use unwrapped shellcheck
* [`0c370aab`](https://github.com/NixOS/nixpkgs/commit/0c370aab6450244197fcd08814a42cdf560ea973) aws-sso-cli: 1.9.9 -> 1.9.10
* [`937e716d`](https://github.com/NixOS/nixpkgs/commit/937e716d4ea11874fdd6381ced8a93f42f4d7273) python3Packages.sphinxext-opengraph: 0.7.5 -> 0.8.1
* [`0a11517a`](https://github.com/NixOS/nixpkgs/commit/0a11517a84f5eab2e7d4ef5219325f20cc52653f) act: 0.2.42 -> 0.2.43
* [`5e6ebb3e`](https://github.com/NixOS/nixpkgs/commit/5e6ebb3e898d5dfee032464e54995f2fcb60bdbb) python310Packages.aiolivisi: 0.0.16 -> 0.0.18
* [`9f031004`](https://github.com/NixOS/nixpkgs/commit/9f031004e71fe8cfa4ae1095a50a3afd8cdfe3d5) libdisplay-info: 0.1.0 -> 0.1.1
* [`60446dda`](https://github.com/NixOS/nixpkgs/commit/60446dda1fca1f80876ba16e26b61ec486b377aa) nixos/hydra: wait for network-online before evaluator start
* [`c0fb30a6`](https://github.com/NixOS/nixpkgs/commit/c0fb30a60e8d2a4de18c0ce53ea6cc8d05f796c9) python310Packages.archinfo: 9.2.40 -> 9.2.41
* [`263f871a`](https://github.com/NixOS/nixpkgs/commit/263f871a627224db5af69ea1e93ef8e76cf577e7) python310Packages.ailment: 9.2.40 -> 9.2.41
* [`8318c658`](https://github.com/NixOS/nixpkgs/commit/8318c658b973ddad416400fa435df09e9a42202f) python310Packages.pyvex: 9.2.40 -> 9.2.41
* [`dd974c57`](https://github.com/NixOS/nixpkgs/commit/dd974c57ac8a0053b1924fa8e2dda87045b301a5) python310Packages.claripy: 9.2.40 -> 9.2.41
* [`7e96ced3`](https://github.com/NixOS/nixpkgs/commit/7e96ced3ea0539cf338136c07b1ccc3da66a0942) python310Packages.cle: 9.2.40 -> 9.2.41
* [`01e6f31e`](https://github.com/NixOS/nixpkgs/commit/01e6f31e561bdf6107dd9f1dbae30e4017d7f9ce) python310Packages.angr: 9.2.40 -> 9.2.41
* [`b4c26395`](https://github.com/NixOS/nixpkgs/commit/b4c263953e0ef0d038002a250aa2b6bcf51bb0e0) python310Packages.python-otbr-api: 1.0.5 -> 1.0.7
* [`c3b9a3e1`](https://github.com/NixOS/nixpkgs/commit/c3b9a3e1f332a4e8b5adc2266a6d568065a195a7) matrix-appservice-irc: 0.37.0 -> 0.37.1
* [`2011b1f0`](https://github.com/NixOS/nixpkgs/commit/2011b1f0030f2f51537a22c5a24beb25ce9326d1) python310Packages.cemm: init at 0.5.1
* [`de134a16`](https://github.com/NixOS/nixpkgs/commit/de134a16be5e6393b8852b4c4aa61bc623c13eb8) chromium: 110.0.5481.177 -> 111.0.5563.64
* [`779db789`](https://github.com/NixOS/nixpkgs/commit/779db7898ca58416f6d1e5bc3c4ed4dafd32879c) go_1_20: 1.20.1 -> 1.20.2
* [`1e36120c`](https://github.com/NixOS/nixpkgs/commit/1e36120c94ad86c19c080e919a84f1ce3d1204e5) signalbackup-tools: 20230305 -> 20230307-1
* [`47276cf4`](https://github.com/NixOS/nixpkgs/commit/47276cf43bcc59e220cf5f95523b3b62d2eac395) ponyc: 0.50.0 -> 0.54.0
* [`5e0eeea8`](https://github.com/NixOS/nixpkgs/commit/5e0eeea8391658f3b138e844e2948423f532c181) pony-corral: 0.6.1 -> unstable-2023-02-11
* [`992b7224`](https://github.com/NixOS/nixpkgs/commit/992b72241df579171f3d3a34c0338fda89c315aa) katawa-shoujo: Add desktop file
* [`43dcf6a2`](https://github.com/NixOS/nixpkgs/commit/43dcf6a240cce10e04ebfde7da6b6f5c4f17ad3f) python310Packages.app-model: 0.1.1 -> 0.1.2
* [`43a3285b`](https://github.com/NixOS/nixpkgs/commit/43a3285b1ee7058cf90db774f169f4d5f48bfe97) kubescape: 2.0.161 -> 2.2.3
* [`2d7bb420`](https://github.com/NixOS/nixpkgs/commit/2d7bb420c8d4bd47bfb8f9b345da7a38ebea78a6) arkade: 0.9.3 -> 0.9.4
* [`4ffa19a0`](https://github.com/NixOS/nixpkgs/commit/4ffa19a0e91bd24c0e93839c4062987f4ddaa633) kubescape: 2.2.3 -> 2.2.4
* [`45a706c5`](https://github.com/NixOS/nixpkgs/commit/45a706c5991d6c305ed7942c7b3ec9e23242342e) python310Packages.prance: 0.21.8.0 -> 0.22.02.22.0
* [`34f4be4a`](https://github.com/NixOS/nixpkgs/commit/34f4be4ad2e7d153f370570ccec8467bec1b23d4) python310Packages.apispec: 6.1.0 -> 6.2.0
* [`c051db62`](https://github.com/NixOS/nixpkgs/commit/c051db62ce639d91f4e039dbc5fc1b090b0a35e8) linvstmanager: init at 1.1.1
* [`7018cf78`](https://github.com/NixOS/nixpkgs/commit/7018cf78c618e0a8ec4369c587319f51cb7b19b0) magma: fix for cuda_profiler_api.h for CUDA 11.8+
* [`22c6c560`](https://github.com/NixOS/nixpkgs/commit/22c6c5609143c5714cf7f3028f0f9744b8d27040) opa: migrate to OCaml 4.14
* [`c3dcd58d`](https://github.com/NixOS/nixpkgs/commit/c3dcd58d7ef46075fa5f3aa2a106b98dd636223c) netbird: 0.14.1 -> 0.14.2
* [`a8a12fdf`](https://github.com/NixOS/nixpkgs/commit/a8a12fdf8538e363846af8634b2a663595a8e686) erdtree: 1.2.0 -> 1.3.0
* [`8648885a`](https://github.com/NixOS/nixpkgs/commit/8648885a80194aea9fa20a699c260af357428a76) xc: 0.0.159 -> 0.0.175
* [`2cd53e12`](https://github.com/NixOS/nixpkgs/commit/2cd53e12829b1d80ca79e520cd720ec9bcb51ee0) python310Packages.caldav: 1.2.0 -> 1.2.1
* [`3d647935`](https://github.com/NixOS/nixpkgs/commit/3d647935eb8341ff5d70ce0ef53e00891430fc39) ov: 0.14.2 -> 0.15.0
* [`bfb509e4`](https://github.com/NixOS/nixpkgs/commit/bfb509e45c09585a5fb4c36032b5cfcab65ee9f4) python310Packages.insteon-frontend-home-assistant: 0.3.2 -> 0.3.3
* [`61852b7f`](https://github.com/NixOS/nixpkgs/commit/61852b7faa8b47aad422adca0fea90fe007e9ead) lib: remove deprecated functions
* [`bac160c5`](https://github.com/NixOS/nixpkgs/commit/bac160c5110547662176fe17923f208b5c38ddd0) altair: 5.0.14 -> 5.0.17
* [`194a3801`](https://github.com/NixOS/nixpkgs/commit/194a380161f12b7b720d25527b06292b715ddaf2) nexttrace: init at 1.1.3
* [`5e651fe3`](https://github.com/NixOS/nixpkgs/commit/5e651fe37e98c69121609146ad5240663d0387df) nixos/nexttrace: init
* [`d1ffbed1`](https://github.com/NixOS/nixpkgs/commit/d1ffbed1759054328af3c06a6f49c4e6996bfb7d) qcad: 3.27.9.2 -> 3.27.9.3
* [`392c79de`](https://github.com/NixOS/nixpkgs/commit/392c79dece5491dd62471da85df6adec1edcd29c) terraform-providers.aviatrix: 3.0.1 → 3.0.2
* [`35ebb2dc`](https://github.com/NixOS/nixpkgs/commit/35ebb2dc8341d34b01e5cf5092c29af180925391) terraform-providers.aiven: 4.0.0 → 4.1.0
* [`5f93b977`](https://github.com/NixOS/nixpkgs/commit/5f93b9774eb22fc13275d89a081a0acc14a82ca9) terraform-providers.cloudfoundry: 0.50.4 → 0.50.5
* [`c242f5c8`](https://github.com/NixOS/nixpkgs/commit/c242f5c89d42cef004ea0f8d155121b848b5b764) terraform-providers.cloudamqp: 1.23.0 → 1.24.0
* [`54c038d6`](https://github.com/NixOS/nixpkgs/commit/54c038d693d78fec48eb45ad34c6df14e5907f9c) terraform-providers.datadog: 3.21.0 → 3.22.0
* [`59d19cf0`](https://github.com/NixOS/nixpkgs/commit/59d19cf0a1e47595f4f38db20c00df5c7ef1db80) terraform-providers.okta: 3.42.0 → 3.43.0
* [`75725216`](https://github.com/NixOS/nixpkgs/commit/75725216fd4480420f45ff0437ca408965e7ea93) terraform-providers.mongodbatlas: 1.8.0 → 1.8.1
* [`2369bf3d`](https://github.com/NixOS/nixpkgs/commit/2369bf3d444bfd84a8b31e28ca867618e81d0077) terraform-providers.scaleway: 2.12.0 → 2.12.1
* [`1599fe76`](https://github.com/NixOS/nixpkgs/commit/1599fe767a9636c79b431420a20e0bf44f7e6787) terraform-providers.yandex: 0.85.0 → 0.86.0
* [`b274a380`](https://github.com/NixOS/nixpkgs/commit/b274a380cfec45850b369c31327c02ce36d694da) logcheck: 1.3.23 -> 1.4.2
* [`76c0e3ef`](https://github.com/NixOS/nixpkgs/commit/76c0e3ef55c937f83bbe6ba6543d430d7e6412a9) python310Packages.klein: don't test on multiple cores
* [`fb825182`](https://github.com/NixOS/nixpkgs/commit/fb8251822c6236d95629cfc4800f5eea9ee9932b) libadwaita: 1.2.2 -> 1.2.3
* [`b6b23791`](https://github.com/NixOS/nixpkgs/commit/b6b23791f51d1df6416d9ae713af57ccc8ff271b) pachyderm: 2.5.0 -> 2.5.1
* [`f7f6256d`](https://github.com/NixOS/nixpkgs/commit/f7f6256de8c51bb4aaec38792ef5d93853703ab4) ytt: 0.44.1 -> 0.45.0
* [`41ec7e2f`](https://github.com/NixOS/nixpkgs/commit/41ec7e2fefb0c3b8942cbfc47e579a052bdc5c49) python3Packages.sphinxext-opengraph: add changelog to meta
* [`a35b09be`](https://github.com/NixOS/nixpkgs/commit/a35b09be82e3ecd237791f32a93e9b681ffd553e) audacious: 4.2 -> 4.3
* [`d7a0fc6e`](https://github.com/NixOS/nixpkgs/commit/d7a0fc6e764f1a8cca6532a97b3d228c1f6bec90) amass: 3.21.2 -> 3.22.0
* [`c1d9d8c7`](https://github.com/NixOS/nixpkgs/commit/c1d9d8c7f3e99af8f475730c79cb2ad25b52558e) exploitdb: 2023-03-01 -> 2023-03-06
* [`2a508fbf`](https://github.com/NixOS/nixpkgs/commit/2a508fbf2c3bfd4130d7390b6ff9b1b29ccbbc44) python310Packages.sphinxext-opengraph: disable on unsupported Python releases
* [`d6e7f3fc`](https://github.com/NixOS/nixpkgs/commit/d6e7f3fc7b72a1e9a7616fcd378f4dcfb35cfb9e) rmw: init at 0.9.0
* [`3a38710c`](https://github.com/NixOS/nixpkgs/commit/3a38710c9211940fb7cebb88c1805d1973b6a918) python3Packages.squarify: init at 0.4.3
* [`60709908`](https://github.com/NixOS/nixpkgs/commit/60709908a27fa813022c10838908c979b291ca4c) ocaml: remove obsolete aliases for old versions
* [`8d42f2aa`](https://github.com/NixOS/nixpkgs/commit/8d42f2aa9d5e8d46b968db1a2b5efd7a5531c62e) opam_1_2: drop
* [`3d37d1bc`](https://github.com/NixOS/nixpkgs/commit/3d37d1bcc22837edfe18874a3fe83db6b981bb5c) python310Packages.aioslimproto: 2.1.1 -> 2.2.0
* [`410dfd65`](https://github.com/NixOS/nixpkgs/commit/410dfd651a828131ee0cd6f9a043310b07539db5) python310Packages.aioslimproto: add changelog to meta
* [`bff6d7eb`](https://github.com/NixOS/nixpkgs/commit/bff6d7eb5ec2587a11f022be11900df9ad8a0ea0) fabric-installer: 0.11.1 -> 0.11.2
* [`ffcf148a`](https://github.com/NixOS/nixpkgs/commit/ffcf148a8dd6e8d1e240137e3f8071af5fa92a28) nixos/waybar: allow change waybar package to use
* [`26e14e57`](https://github.com/NixOS/nixpkgs/commit/26e14e57af344f61d8adc37ce4f6f1fe554861bc) nixos/networkd-dispatcher: add rules option
* [`22fd05ad`](https://github.com/NixOS/nixpkgs/commit/22fd05adeeae38dd23be4b4c0ffb18f3f1fd264c) networkd-dispatcher: Add patch support store files
* [`d1323857`](https://github.com/NixOS/nixpkgs/commit/d1323857f853e14b4f45a6f18ae9907065653aff) tilemaker: 2.2.0 → 2.3.0
* [`9796cbfe`](https://github.com/NixOS/nixpkgs/commit/9796cbfe140d00504d7f8ee42a2b19132967608c) linux_xanmod_latest: 6.1.13 -> 6.1.14
* [`c70c23e0`](https://github.com/NixOS/nixpkgs/commit/c70c23e08809f0266076427567d25a8f8bc28764) linux_xanmod: 5.15.89 -> 6.1.15
* [`32af296b`](https://github.com/NixOS/nixpkgs/commit/32af296bbed999d10a5e0f54c1a1ad062b4030dc) linux_xanmod_latest: 6.1.14 -> 6.2.2
* [`ff894f5e`](https://github.com/NixOS/nixpkgs/commit/ff894f5efa5636117d30cf837e29b83f4d8a12bd) typos: 1.13.16 -> 1.13.18
* [`bd7439ef`](https://github.com/NixOS/nixpkgs/commit/bd7439ef8c332465035bba3f564540bf5692513f) xcp: 0.9.3 -> 0.9.4
* [`2f9b913c`](https://github.com/NixOS/nixpkgs/commit/2f9b913c50b0966192b96a857ad2edd534197c31) prismlauncher: use qtWrapperArgs
* [`eb127968`](https://github.com/NixOS/nixpkgs/commit/eb12796851c12259d3a628eda8f8c0a07c455fa9) shadowsocks-v2ray-plugin: 1.3.1 -> 1.3.2
* [`159cf2b7`](https://github.com/NixOS/nixpkgs/commit/159cf2b7dfc881209f6926e7d2ab01b067804cb8) rpm-ostree: 2023.1 -> 2023.2
* [`3374f379`](https://github.com/NixOS/nixpkgs/commit/3374f379ce3021e2add5ead7fed27a3a55f1e09c) media-downloader: 2.8.0 -> 2.9.0
* [`ba4d56e2`](https://github.com/NixOS/nixpkgs/commit/ba4d56e20e434d0ac2f3006d60a549d994b28259) tamarin-prover: install vim-plugin to nvim/site
* [`79c65780`](https://github.com/NixOS/nixpkgs/commit/79c6578005f4eb8cd287a212ff72e0b262ffcf69) fzf: install vim-plugin to nvim/site
* [`78fee034`](https://github.com/NixOS/nixpkgs/commit/78fee034672c1ffe3a570bc8958769a3a784d577) txr: install vim-plugin to nvim/site
* [`4de2b19f`](https://github.com/NixOS/nixpkgs/commit/4de2b19fa184d9c3d5aa158d0923931976441442) boogie: install vim-plugin to nvim/site
* [`b049df00`](https://github.com/NixOS/nixpkgs/commit/b049df0060eb04b93f0b44e18a6a0ac8f6948c4f) html-xml-utils: 8.4 -> 8.5
* [`da95db0a`](https://github.com/NixOS/nixpkgs/commit/da95db0a3a06fda8bd13ff00c3a0a11a6409b3e3) taskwarrior: fix nvim/site installation path
* [`31f52597`](https://github.com/NixOS/nixpkgs/commit/31f52597e5a052ca6e3ea7085cdd59588df47666) charis-sil: 6.101 -> 6.200
* [`28d86311`](https://github.com/NixOS/nixpkgs/commit/28d86311edbdba8588a8e4d6737179faf85726f7) herbstluftwm: fix tests with gcc12
* [`de5d476c`](https://github.com/NixOS/nixpkgs/commit/de5d476c79a274566289b40e9c82b07519d9a3e2) roxctl: 3.73.2 -> 3.73.3
* [`008aeed9`](https://github.com/NixOS/nixpkgs/commit/008aeed915240b6c0a140696b9b440641892bd79) krabby: init at 0.1.6
* [`b23a5794`](https://github.com/NixOS/nixpkgs/commit/b23a5794db78b057cf65cfcd4934a9c2a77aff8d) linux_xanmod: remove LRU option
* [`e8afb655`](https://github.com/NixOS/nixpkgs/commit/e8afb655ba923f0baae5e2b93ed7daf1063a630a) qxmpp: 1.5.1 -> 1.5.2
* [`fd400f54`](https://github.com/NixOS/nixpkgs/commit/fd400f5425f36c49b5592c45866094baeaf88a7f) terracognita: 0.8.1 -> 0.8.2
* [`60ba4760`](https://github.com/NixOS/nixpkgs/commit/60ba476076cd49b050eece5bfaac89720e74b205) vassal: 3.6.13 -> 3.6.14
* [`5b9ed59e`](https://github.com/NixOS/nixpkgs/commit/5b9ed59e80adbf700a76f070556cf3a56e8f1dba) syncthingtray: 1.3.2 -> 1.3.3
* [`a5613d24`](https://github.com/NixOS/nixpkgs/commit/a5613d24efe0d082a23bbb7b828564d843490101) libsForQt5.qtutilities: 6.10.0 -> 6.11.0
* [`c10d18c7`](https://github.com/NixOS/nixpkgs/commit/c10d18c7e74aee0928322ca45087a27ce9183d5d) cpp-utilities: 5.20.0 -> 5.21.0
* [`bfc237b4`](https://github.com/NixOS/nixpkgs/commit/bfc237b4aaf7cd59c838b310fe85f8b4b0f53e62) zfxtop: 0.2.1 -> 0.3.0
* [`afdb49ea`](https://github.com/NixOS/nixpkgs/commit/afdb49eade7af7637688e0a343a6a2e0e6fdad6f) ipfs-cluster: 1.0.5 -> 1.0.6
* [`270c722c`](https://github.com/NixOS/nixpkgs/commit/270c722c89b37b383b144d3d3f4429fbe094fa86) aws-vault: 6.6.2 -> 7.0.0 ([NixOS/nixpkgs⁠#220033](https://github.com/NixOS/nixpkgs/issues/220033))
* [`668f36db`](https://github.com/NixOS/nixpkgs/commit/668f36dbd53aa72348e0187b6d174312ea627b33) ryujinx: 1.1.489 -> 1.1.650
* [`ff048a29`](https://github.com/NixOS/nixpkgs/commit/ff048a29f0565668fd7e9c746f8a57a4b173d9e4) linuxKernel.kernels.linux_zen: 6.2.2-zen1 -> 6.2.2-zen2
* [`41745015`](https://github.com/NixOS/nixpkgs/commit/41745015f68c11694cf7b474db9ccb5de0be6ffa) reaper: 6.75 -> 6.77
* [`ff37d983`](https://github.com/NixOS/nixpkgs/commit/ff37d983b0e343dab0a69ae0602433cdafb13958) linuxKernel.kernels.linux_lqx: 6.1.14-lqx1 -> 6.1.15-lqx2
* [`29da1234`](https://github.com/NixOS/nixpkgs/commit/29da123428dd71f553f8effe28d284d8d57b080b) offpunk: 1.8->1.9
* [`be521607`](https://github.com/NixOS/nixpkgs/commit/be5216077e2ed22cde9af456f90cf0cfdf0358fe) offpunk: install the project's man page
* [`978b7cfd`](https://github.com/NixOS/nixpkgs/commit/978b7cfd6046a8611aeb429ca27cfc886eb91a17) go-licenses: init at 1.6.0
* [`b3fff4bf`](https://github.com/NixOS/nixpkgs/commit/b3fff4bf0fb0f6560ab3c688b05ce6bd52d5f876) marksman: 2023-01-29 -> 2023-03-04
* [`76657296`](https://github.com/NixOS/nixpkgs/commit/76657296600b57277016389a8daa96342e77df06) flyctl: 0.0.477 -> 0.0.478
* [`8e2f599e`](https://github.com/NixOS/nixpkgs/commit/8e2f599ef9110963eee673946f9f887e85f56ae9) mixxx: 2.3.3 -> 2.3.4
* [`79394fd6`](https://github.com/NixOS/nixpkgs/commit/79394fd6901b04c75465b855146f771079033de4) opcr-policy: 0.1.50 -> 0.1.51
* [`084ddae9`](https://github.com/NixOS/nixpkgs/commit/084ddae98b080245249f6ea3a5d9f319ae1877e1) python312: 3.12.0a5 -> 3.12.0a6
* [`a259a281`](https://github.com/NixOS/nixpkgs/commit/a259a28151bc4f8036ad8f63fa36b1c8da485c62) step-kms-plugin: init at 0.7.0
* [`ff28bb10`](https://github.com/NixOS/nixpkgs/commit/ff28bb10554a2e967cde4b5183e0fe02b8c5f8a7) asusctl: 4.5.6 -> 4.5.8
* [`d8d8b55e`](https://github.com/NixOS/nixpkgs/commit/d8d8b55e7dccfe10e99d2f4ed968fa8acaef9b78) nixos/murmur: expose dbus
* [`3d8632ab`](https://github.com/NixOS/nixpkgs/commit/3d8632ab47db91f79703f10c0dfb98bd8273013f) phpunit: 10.0.11 -> 10.0.14
* [`9e5e7780`](https://github.com/NixOS/nixpkgs/commit/9e5e77806a692277da477ca1879e24789350911e) circt: 1.30.0 -> 1.34.0
* [`f421180f`](https://github.com/NixOS/nixpkgs/commit/f421180fa56be1fbc5ce26191ac230ea45dd58c8) discord-canary: 0.0.148 -> 0.0.149
* [`4d40a028`](https://github.com/NixOS/nixpkgs/commit/4d40a028a1f3795e0b8257cab781c8827123abf5) rtorrent: set meta.mainProgram
* [`faa92cd3`](https://github.com/NixOS/nixpkgs/commit/faa92cd30b1079e76b99716aa92df7cc5c552dd6) pkgsCross.ghcjs.haskellPackages.ghc: formally disable shared libs
* [`471b9cab`](https://github.com/NixOS/nixpkgs/commit/471b9cab41b218080f5e9f4abbc83eaaa60c6abf) haskell.compiler.ghcHEAD: 9.7.20221224 -> 9.7.20230217
* [`23dc76fd`](https://github.com/NixOS/nixpkgs/commit/23dc76fd2248d51625f3375d506416415dfba7d6) haskell.compiler.ghcHEAD: fix hadrianFlagsArray handling
* [`97d55ec9`](https://github.com/NixOS/nixpkgs/commit/97d55ec923b0cd3798a6a84e2e0a6b2c6b54f6a9) haskell.compiler.ghcHEAD: drop malformed/redundant hadrian setting
* [`afeb316d`](https://github.com/NixOS/nixpkgs/commit/afeb316dc36c7f104ea43045d77745ab0705c873) wakapi: 2.6.1 -> 2.6.2
* [`64eb9216`](https://github.com/NixOS/nixpkgs/commit/64eb9216d9be5c4239121619d8828b5249b7947f) sarasa-gothic: 0.40.1 -> 0.40.2
* [`9f747c87`](https://github.com/NixOS/nixpkgs/commit/9f747c87f8570f4713f9adb5d1c539e9b25cfb83) qpdf: 11.2.0 -> 11.3.0
* [`30c16853`](https://github.com/NixOS/nixpkgs/commit/30c168537c08c60454ada54db259bdf7cd300b6c) numix-icon-theme-circle: 23.02.28 -> 23.03.04
* [`53d3317f`](https://github.com/NixOS/nixpkgs/commit/53d3317f6d43e3759f4eef365c6a8dfe099570ff) vscode-extensions.ionide.ionide-fsharp: 6.0.5 -> 7.5.1
* [`7dcc825f`](https://github.com/NixOS/nixpkgs/commit/7dcc825f2833465abfdab103bae84b39edfb8d70) openai-whisper-cpp: 1.2.0 -> 1.2.1
* [`f3acb36d`](https://github.com/NixOS/nixpkgs/commit/f3acb36d6407ba549d7bf660ceec7572700f8cc9) proton-caller: 3.1.1 -> 3.1.2
* [`cc53194f`](https://github.com/NixOS/nixpkgs/commit/cc53194fbd775345ae3afee98a827630c2310dc9) python310Packages.pyinsteon: 1.3.3 -> 1.3.4
* [`4e04af68`](https://github.com/NixOS/nixpkgs/commit/4e04af68ea0029237ba55437a869f4de5a03cdf0) home-assistant: 2023.3.1 -> 2023.3.2
* [`ad075bd9`](https://github.com/NixOS/nixpkgs/commit/ad075bd91580666d97ad5125d78c7c5cd32403c4) viceroy: init at 0.3.5
* [`70fa4c65`](https://github.com/NixOS/nixpkgs/commit/70fa4c65696495be22bce506accfca52310f476b) haste-server: ccc5049b07e9f90ec19fc2a88e5056367c53e202 -> b52b394bad909ddf151073987671e843540d91d6
* [`2a7bd670`](https://github.com/NixOS/nixpkgs/commit/2a7bd670fca94169b09c3b966f05ab497e4accfe) cargo-all-features: 1.6.0 -> 1.7.0
* [`4c62f1c7`](https://github.com/NixOS/nixpkgs/commit/4c62f1c7837c7825ce8844b66d000dffd40757d5) maintainers: add longer
* [`e8d6cef1`](https://github.com/NixOS/nixpkgs/commit/e8d6cef1036d4750fa71c092958d8b78314022c5) kubernetes-polaris: init at 7.3.2
* [`f7882319`](https://github.com/NixOS/nixpkgs/commit/f7882319e35a97aa6e5baf618b7b1ed6257876f9) process-viewer: 0.5.6 -> 0.5.8
* [`1312c2db`](https://github.com/NixOS/nixpkgs/commit/1312c2db133b9473a12990ac6051541df0dd81b6) super-productivity: 7.12.2 -> 7.13.1
* [`4bc7e7bd`](https://github.com/NixOS/nixpkgs/commit/4bc7e7bd5d92a9ff3776c7ab2d31c4ef9bec21ec) pulumi-bin: 3.55.0 -> 3.56.0
* [`2f4ea5fa`](https://github.com/NixOS/nixpkgs/commit/2f4ea5fab6dda0199cb5e65d85b5af2eed4de14d) privoxy: 3.0.33 -> 3.0.34
* [`96e08120`](https://github.com/NixOS/nixpkgs/commit/96e0812048ea638686a700dbfd92989456160c27) scaleway-cli: 2.11.1 -> 2.12.0
* [`f12b8acc`](https://github.com/NixOS/nixpkgs/commit/f12b8acc1f945554b25627983113ac4cba970e8a) snappymail: 2.26.3 -> 2.26.4
* [`8853df99`](https://github.com/NixOS/nixpkgs/commit/8853df99bce7498a4bbad5c682097371c60d4bc0) fq: 0.3.0 -> 0.4.0
* [`95b53814`](https://github.com/NixOS/nixpkgs/commit/95b53814cdd8998d504887c445e689089a77d7ad) exploitdb: 2023-03-06 -> 2023-03-08
* [`29c84e0d`](https://github.com/NixOS/nixpkgs/commit/29c84e0d6a21fa22c1da464d2575378af3a6daa7) trufflehog: 3.28.7 -> 3.29.0
* [`1480cd40`](https://github.com/NixOS/nixpkgs/commit/1480cd40981da3986ead8ea0554eb13c47515127) ocamlPackages.merlin: 4.7 → 4.8
* [`91062888`](https://github.com/NixOS/nixpkgs/commit/910628885ca2e638aca003a0d9cff75890460ca8) hipsparse: 5.4.2 -> 5.4.3
* [`239b496f`](https://github.com/NixOS/nixpkgs/commit/239b496fa5179d67536813017860fdb93caef751) g2o: 20201223 -> 20230223
* [`856936ab`](https://github.com/NixOS/nixpkgs/commit/856936abc863e1f9b95368c4ac300b0ac82c4e03) buildRustCrate: add libiconv to nativeBuildInputs on darwin
* [`b4990c98`](https://github.com/NixOS/nixpkgs/commit/b4990c9891e53aabb22504504d890e41f745540d) wasmtime: 6.0.0 -> 6.0.1
* [`b3208451`](https://github.com/NixOS/nixpkgs/commit/b3208451ef21d45ec80eea7fb456fc1d00c64e56) open-pdf-sign: 0.1.3 -> 0.1.4
* [`c4d1f2b7`](https://github.com/NixOS/nixpkgs/commit/c4d1f2b78ca6fc3d23d66be591e4c2d02f31faed) python310Packages.lcgit: init at 0.2.0
* [`b1455c8c`](https://github.com/NixOS/nixpkgs/commit/b1455c8cf4326efc4d0ff59d4c1f287718fc3938) python10Packages.ldapdomaindump: add toPythonApplication
* [`4b0d54ef`](https://github.com/NixOS/nixpkgs/commit/4b0d54ef6d73f410be0358fa9d33154759a9fc7b) kubernetes-helm: 3.11.1 -> 3.11.2
* [`64a0faa7`](https://github.com/NixOS/nixpkgs/commit/64a0faa70032bf4401e80dba27a9c76d681c8934) erigon: 2.39.0 -> 2.40.1
* [`36e5e6be`](https://github.com/NixOS/nixpkgs/commit/36e5e6be647356dcd6b9aa0dd31187135af40d17) redpanda: 22.3.13 -> 23.1.1
* [`e4341d36`](https://github.com/NixOS/nixpkgs/commit/e4341d36239a78b6ca66adc683a61b467b1c93dd) python3Packages.imageio: 2.25.0 -> 2.26.0
* [`cbbc0750`](https://github.com/NixOS/nixpkgs/commit/cbbc0750671cf816cbaf1cde38c7eef075f5c45b) chromiumDev: 112.0.5615.12 -> 112.0.5615.20
* [`d4a78d5f`](https://github.com/NixOS/nixpkgs/commit/d4a78d5f094e0c837b9104f0cd3a4fb2cf966932) texlive: add test for lualatex fonts
* [`a6f6ec73`](https://github.com/NixOS/nixpkgs/commit/a6f6ec738bd03e99cf4efe8553dbe71f25e3cc5f) tabnine: 4.4.245 -> 4.4.265
* [`9ce2e1a4`](https://github.com/NixOS/nixpkgs/commit/9ce2e1a4153746a5b92d5e10858d306e896594af) python310Packages.homeassistant-stubs: Relax home-assistant version
* [`8fbdc129`](https://github.com/NixOS/nixpkgs/commit/8fbdc12942691a7aa5b5b195b1c0c1924ca49c36) terraform: 1.3.9 -> 1.4.0
* [`0701506b`](https://github.com/NixOS/nixpkgs/commit/0701506bf12ecdbec8852f541c4cf47f7b9c015c) codespell: 2.2.2 -> 2.2.4
* [`6d9f07d8`](https://github.com/NixOS/nixpkgs/commit/6d9f07d8fe1b965e9dffdda2ac9638347e8b9bd9) librclone: init at 1.61.1
* [`ea0070a5`](https://github.com/NixOS/nixpkgs/commit/ea0070a5189adcd3e16bd15f0609d34b5abbbcfe) celeste: init at 0.4.6
* [`374fc068`](https://github.com/NixOS/nixpkgs/commit/374fc068ec1fe11c9f638f5fbf1d5cadb855f938) nixos/systemd-oomd: disable systemd-oomd when enableUnifiedCgroupHierarchy is false
* [`bb9b8682`](https://github.com/NixOS/nixpkgs/commit/bb9b8682d526e193e254db8d3b35832c91d6219e) python310Packages.vsure: 2.6.0 -> 2.6.1
* [`55544a3f`](https://github.com/NixOS/nixpkgs/commit/55544a3fd9ec7b018281b20ec0b0c8f29a1b46c3) gh: 2.23.0 -> 2.24.0
* [`637092b8`](https://github.com/NixOS/nixpkgs/commit/637092b8e755f1ee0368016a41f284d22c43f519) intel-compute-runtime: 22.49.25018.24 -> 23.05.25593.11
* [`0572ebb4`](https://github.com/NixOS/nixpkgs/commit/0572ebb43558c8a43c8f209fbdc14d2a2ef0559a) python3Packages.types-ujson: init at 5.7.0.1
* [`ca29761e`](https://github.com/NixOS/nixpkgs/commit/ca29761ef5bc38947d9048b6dc8f3e8c795b6a34) gitlint: 0.18.0 -> 0.19.0
* [`61dcd439`](https://github.com/NixOS/nixpkgs/commit/61dcd43981dccd6b7002031164a288e5db35dfbb) seer: 1.14 -> 1.15
* [`0e3e5f3c`](https://github.com/NixOS/nixpkgs/commit/0e3e5f3c7c97054df06969cc95b352dbcd199d7b) automatic-timezoned: 1.0.68 -> 1.0.69
* [`fe5b3c3e`](https://github.com/NixOS/nixpkgs/commit/fe5b3c3e2d0216796caa875dd85eb52b32aaae00) avalanchego: 1.9.10 -> 1.9.11
* [`b3189634`](https://github.com/NixOS/nixpkgs/commit/b3189634581d204b3c927f1033771cb964fc612f) ssh-to-age: 1.1.1 -> 1.1.2
* [`da14e930`](https://github.com/NixOS/nixpkgs/commit/da14e930c3fd0fc0def8da6ec25cab0b31f964a0) skaffold: 2.1.0 -> 2.2.0
* [`e3a07ea7`](https://github.com/NixOS/nixpkgs/commit/e3a07ea75239a62a26c14ad2672737949af8a50c) gh: 2.24.0 -> 2.24.1
* [`fb4e70b0`](https://github.com/NixOS/nixpkgs/commit/fb4e70b0dcba920df9075254a2a8282b0d30e335) python310Packages.fritzconnection: 1.11.0 -> 1.12.0
* [`2b315453`](https://github.com/NixOS/nixpkgs/commit/2b315453e949af18c900a461cec02892d5a08a00) kodi: 19.4 -> 20.0
* [`0c3c47ab`](https://github.com/NixOS/nixpkgs/commit/0c3c47ab7a8ae1032d5243271365f97bd7698ddc) kodi.packages.inputstream-adaptive: 19.0.7 -> 20.3.2
* [`b520a0cb`](https://github.com/NixOS/nixpkgs/commit/b520a0cb51c268cc332d11b966ee91d465f143f2) kodi.packages.inputstream-ffmpegdirect: 19.0.3 -> 20.5.0
* [`2e3ba1bd`](https://github.com/NixOS/nixpkgs/commit/2e3ba1bda16c9239c444f60ae8368e5be126a096) kodi.packages.inputstream-rtmp: 19.0.1 -> 20.3.0
* [`2ce5a0b1`](https://github.com/NixOS/nixpkgs/commit/2ce5a0b109f1f188c0f86d0bc70289baf53277ef) kodi.packages.joystick: 19.0.1 -> 20.1.0
* [`a3cfb815`](https://github.com/NixOS/nixpkgs/commit/a3cfb8157ffd7ba5534a19721bd1a2c456264a63) kodi.packages.libretro: 19.0.0 -> 20.1.0
* [`c81978e7`](https://github.com/NixOS/nixpkgs/commit/c81978e775867750089b88cbf5e81fe6ba61acd6) kodi.packages.pvr-hdhomerun: 19.1.0 -> 20.4.0
* [`057fd517`](https://github.com/NixOS/nixpkgs/commit/057fd517e710ecf309b63c366c00e0c268b5fad2) kodi.packages.pvr-hts: 19.0.6 -> 20.6.0
* [`7771fe5b`](https://github.com/NixOS/nixpkgs/commit/7771fe5b2191aa97b3745071cc9ef60ace004a2e) kodi.packages.pvr-iptvsimple: 19.2.2 -> 20.6.1
* [`59cb0b24`](https://github.com/NixOS/nixpkgs/commit/59cb0b24577153ce8137f69b3b4efac404d747c0) kodi.packages.vfs-libarchive: 19.0.1 -> 20.1.0
* [`9aa1e31a`](https://github.com/NixOS/nixpkgs/commit/9aa1e31af8c19ab890b4e45616cb38e53378da3d) kodi.packages.vfs-sftp: 19.0.1 -> 20.1.0
* [`7d272783`](https://github.com/NixOS/nixpkgs/commit/7d2727838a8d31fbb4f1339cfc68be75fed144b8) kodi.packages.visualization-waveform: 19.0.3 -> 20.2.1
* [`eae456ae`](https://github.com/NixOS/nixpkgs/commit/eae456ae09ed029506466c09dab7d1108d7b061e) kodi.packages.steam-controller: 0.11.0 -> 20.0.2
* [`e9da3a88`](https://github.com/NixOS/nixpkgs/commit/e9da3a88e81c2272f23290dbbb73f953e30c6c15) firefox-devedition-bin-unwrapped: 111.0b7 -> 111.0b8
* [`78ac44af`](https://github.com/NixOS/nixpkgs/commit/78ac44af766f967a2c9dfb88d13688729fba4595) parallel: 20221222 -> 20230222
* [`9e6a70d0`](https://github.com/NixOS/nixpkgs/commit/9e6a70d060a2bd7ea328cb7aa29bad10456a3d2d) zoom-us: 5.13.10.1208 -> 5.13.11.1288
* [`0397322d`](https://github.com/NixOS/nixpkgs/commit/0397322d80da4a9ee117bde84b8de9e6cce88e22) python310Packages.txi2p-tahoe: init at 0.3.7
* [`3d3db646`](https://github.com/NixOS/nixpkgs/commit/3d3db646809dc690ea676a5ce2baeae7167eb0ed) python310Packages.foolscap: 21.7.0 -> 23.3.0
* [`a6561d82`](https://github.com/NixOS/nixpkgs/commit/a6561d8237921e552b2cea4c05b74bb0b8a98ddf) cppcheck: 2.10.1 -> 2.10.2
* [`95712a73`](https://github.com/NixOS/nixpkgs/commit/95712a7325653631ecf97ab1f18c8101162815ff) cargo-deb: 1.42.1 -> 1.42.2
* [`0c0fe2e9`](https://github.com/NixOS/nixpkgs/commit/0c0fe2e9f14387595f8297cfe6352bccf842b5ad) terraform-providers.cloudflare: 4.0.0 → 4.1.0
* [`991dd6bf`](https://github.com/NixOS/nixpkgs/commit/991dd6bf2a992bd416b9fae69bdbea38c5e4c043) terraform-providers.local: 2.3.0 → 2.4.0
* [`5a79b956`](https://github.com/NixOS/nixpkgs/commit/5a79b9562ff77f1faf04e4a62c0641dbd71eee42) terraform-providers.scaleway: 2.12.1 → 2.13.0
* [`b6f45b0f`](https://github.com/NixOS/nixpkgs/commit/b6f45b0f3198b2ed8ea7d694d1a2e736e0907963) terraform-providers.spotinst: 1.103.0 → 1.104.0
* [`9d48f500`](https://github.com/NixOS/nixpkgs/commit/9d48f5009d59612000c198801d1f03e960a656c1) terraform-providers.oci: 4.110.0 → 4.111.0
* [`a71e4596`](https://github.com/NixOS/nixpkgs/commit/a71e45961e88c8a6dde6287fa1e061f30f8c2fb7) terraform-providers.tencentcloud: 1.79.13 → 1.79.14
* [`897a7425`](https://github.com/NixOS/nixpkgs/commit/897a7425e3bfc73d12a550e16b6ca8882f22e91d) add penalty1083 as maintainer
* [`6f7320ac`](https://github.com/NixOS/nixpkgs/commit/6f7320ac806b262e5e23df79530105b72335787a) geph: init at 4.7.8
* [`b6124a62`](https://github.com/NixOS/nixpkgs/commit/b6124a6283041411fc8454d5800af499ad82fe94) xemu: 0.7.84 -> 0.7.85
* [`47d453b7`](https://github.com/NixOS/nixpkgs/commit/47d453b770cd91efc11ee95eca59577e502900d8) waybox: unstable-2021-04-07 -> 0.2.0
* [`6e825d6f`](https://github.com/NixOS/nixpkgs/commit/6e825d6f548078e07f585d0002559361b2ebc969) sentry-cli: 2.14.3 -> 2.14.4
* [`1ce566b2`](https://github.com/NixOS/nixpkgs/commit/1ce566b2ac50a1077c1d6fb13c44b414946996a2) berglas: 1.0.1 -> 1.0.2
* [`4fb55b05`](https://github.com/NixOS/nixpkgs/commit/4fb55b055dd0d2ca3500b200de2446d842c7d128) ocamlPackages.mirage-fs: use Dune 3
* [`099dccdd`](https://github.com/NixOS/nixpkgs/commit/099dccddc9b02f23a8434e75f7c6480a9e554217) ocamlPackages.mirage-kv: 3.0.1 → 4.0.1
* [`6bbf9ab1`](https://github.com/NixOS/nixpkgs/commit/6bbf9ab16673f8cd656dcca7adef16f06a980125) syncstorage-rs: 0.13.5 -> 0.13.6
* [`cac6d5d8`](https://github.com/NixOS/nixpkgs/commit/cac6d5d8624a190b558eab1fe6029fd216cd289f) wakatime: 1.68.1 -> 1.68.3
* [`e7fe48e8`](https://github.com/NixOS/nixpkgs/commit/e7fe48e8020eab609f59da6b94b26e3a8205a154) airgeddon: 11.10 -> 11.11
* [`3b72d405`](https://github.com/NixOS/nixpkgs/commit/3b72d40509f1d4000cd49292198d7f49eb7cda46) halide: 14.0.0 -> 15.0.0
* [`a58940b3`](https://github.com/NixOS/nixpkgs/commit/a58940b35c31325588802fa70901dc9b290e864b) python310Packages.homeassistant-stubs: 2023.3.1 -> 2023.3.2
* [`dbff810d`](https://github.com/NixOS/nixpkgs/commit/dbff810de84422b5e1351c3d534fbcb5181fe561) ttdl: 3.6.3 -> 3.6.5
* [`bcddd70e`](https://github.com/NixOS/nixpkgs/commit/bcddd70e030d36663ab45a332869f93bc7a1ab17) metal-cli: 0.13.0 -> 0.14.1
* [`5e1088a0`](https://github.com/NixOS/nixpkgs/commit/5e1088a0d4592dd1eeaed63c86e30ca0b1db6634) jaq: 0.9.0 -> 0.10.0
* [`ae09bc0f`](https://github.com/NixOS/nixpkgs/commit/ae09bc0fd305623089d9086ff7802b9a8f4b3d7b) airgeddon: add changelog to meta
* [`48dad033`](https://github.com/NixOS/nixpkgs/commit/48dad033bbbd540fa0e397efd0175ab1ce522dd6) python310Packages.aioairzone: 0.5.2 -> 0.5.3
* [`9984b263`](https://github.com/NixOS/nixpkgs/commit/9984b263bf82339258d405d4e7754df669384eab) exploitdb: 2023-03-08 -> 2023-03-09
* [`88e9562f`](https://github.com/NixOS/nixpkgs/commit/88e9562f2c4027dd961e55b084877be2c1750fe0) python310Packages.peaqevcore: 12.2.7 -> 13.0.0
* [`6cbc7d98`](https://github.com/NixOS/nixpkgs/commit/6cbc7d9832e977099270619396270f19fef07ea2) python310Packages.pymazda: 0.3.7 -> 0.3.8
* [`9fd32c52`](https://github.com/NixOS/nixpkgs/commit/9fd32c52cc4c26009da39236831819ea16a084ed) python310Packages.identify: 2.5.18 -> 2.5.19
* [`2e61c703`](https://github.com/NixOS/nixpkgs/commit/2e61c703f29259d23fb796813ed04867d3caadaf) python310Packages.rns: 0.4.9 -> 0.5.0
* [`3da4f828`](https://github.com/NixOS/nixpkgs/commit/3da4f828a0533cfcdc75a449963d7d552f84303e) python310Packages.scmrepo: 0.1.13 -> 0.1.15
* [`c3a06e83`](https://github.com/NixOS/nixpkgs/commit/c3a06e83b0e1ac04ae0521ca8bbd7cf3d0845cd3) kafkactl: 3.0.3 -> 3.1.0
* [`de470781`](https://github.com/NixOS/nixpkgs/commit/de4707810d0eb970b073ce584906b9752b2d1971) python310Packages.screenlogicpy: 0.8.0 -> 0.8.1
* [`88e884b0`](https://github.com/NixOS/nixpkgs/commit/88e884b06f09cb3faeefdf78ceabe40c5a151b06) kafkactl: add changelog to meta
* [`16bddcfb`](https://github.com/NixOS/nixpkgs/commit/16bddcfbaf8f1942168a553be64a574c635b4622) cri-o: 1.26.1 -> 1.26.2
* [`7c88c18a`](https://github.com/NixOS/nixpkgs/commit/7c88c18a082c20a2ab556488615626c01fac534f) qdrant: 1.0.2 -> 1.0.3
* [`d6e52d26`](https://github.com/NixOS/nixpkgs/commit/d6e52d26b092036423beb029e67283e6fa9c4768) shell-genie: specify license
* [`2aa99214`](https://github.com/NixOS/nixpkgs/commit/2aa9921403ddc795344a3af7f891ddde7f48bc83) datree: 1.8.33 -> 1.8.36
* [`4d15fb3a`](https://github.com/NixOS/nixpkgs/commit/4d15fb3ade85275b6a1404644ef339b7fdd713e4) nixos/tests/installer.nix: fix hydra eval
* [`639825c9`](https://github.com/NixOS/nixpkgs/commit/639825c943b5d5618d2d6be289274d40d8c5f5ac) bats: update 1.8.2 -> 1.9.0
* [`9670b19c`](https://github.com/NixOS/nixpkgs/commit/9670b19ce8f7c23c975a34206bb40e2ace152d09) go-mockery: add package test
* [`e2b1f289`](https://github.com/NixOS/nixpkgs/commit/e2b1f289a30addca193722c525e1a8cfd7b421ce) python310Packages.timeago: 1.0.15 -> 1.0.16
* [`d5a716d4`](https://github.com/NixOS/nixpkgs/commit/d5a716d4d68211f5c8f52b1d3d4b3eab8399d1cc) acr: 2.0.0 -> 2.1.1
* [`1bf1f7a7`](https://github.com/NixOS/nixpkgs/commit/1bf1f7a75fc139db5c500550efd51568a32cf9be) yabasic: 2.90.2 -> 2.90.3
* [`fe12faba`](https://github.com/NixOS/nixpkgs/commit/fe12faba4d9e8d57aea0d2940d756bbd44c7370f) Revert "Merge pull request [NixOS/nixpkgs⁠#217317](https://github.com/NixOS/nixpkgs/issues/217317) from atorres1985-contrib/remove-bqn-mode"
* [`83ebe5b1`](https://github.com/NixOS/nixpkgs/commit/83ebe5b11174dc6ce177a52827132111c184a55b) vala-language-server: aarch64-darwin build
* [`d315cae1`](https://github.com/NixOS/nixpkgs/commit/d315cae1d9906bce34012162548d6a8d7d6f401b) lightning: 2.2.0 -> 2.2.1
* [`13bfde1a`](https://github.com/NixOS/nixpkgs/commit/13bfde1a80811ace038631fb95603733c57a7ad6) redmine: 4.2.9 -> 4.2.10
* [`4e59252a`](https://github.com/NixOS/nixpkgs/commit/4e59252a2a6afaaa8b6d712e4c572ceaac1ded2b) python3Packages.torch: Enable Accelerate.framework on darwin to increase performance
* [`8bc659c5`](https://github.com/NixOS/nixpkgs/commit/8bc659c5b73d3f160987ddee5f0db79d6238f354) zen-kernels: remove myself as maintainer
* [`29590623`](https://github.com/NixOS/nixpkgs/commit/2959062362b8521165a7582660053722b16f3323) coqPackages: various 8.16 -> 8.17
* [`9202661d`](https://github.com/NixOS/nixpkgs/commit/9202661d5b0dc3f8c…
fgaz added a commit to fgaz/nixpkgs that referenced this pull request Jan 21, 2024
This PR updates the bootstrap tarballs for riscv64-linux with new Hydra-generated ones.

Fixes NixOS#275848 (bootstrap assembler too old to build gcc 13).

I'll be following the script used in NixOS#151399, NixOS#168199, NixOS#183487, and NixOS#188334.

Files came from [this](https://hydra.nixos.org/build/246376732#tabs-summary) Hydra build, which used nixpkgs revision 160cedc to instantiate:

```
/nix/store/cpiajh4l83b08pynwiwkpxj53d78pcxr-stdenv-bootstrap-tools-riscv64-unknown-linux-gnu.drv
```

and then built:

```
/nix/store/8a92pj40awdw585mcb9dvm4nyb03k3q3-stdenv-bootstrap-tools-riscv64-unknown-linux-gnu
```

I downloaded these files from Hydra and prefetched them into the nix store with the following commands:

```
STOREPATH=8a92pj40awdw585mcb9dvm4nyb03k3q3-stdenv-bootstrap-tools-riscv64-unknown-linux-gnu
OPTIONS="--option binary-caches https://cache.nixos.org --option trusted-public-keys cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
nix store prefetch-file \
  file://$(nix store add-file --name bootstrap-tools.tar.xz  $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/bootstrap-tools.tar.xz)
nix store prefetch-file --executable \
  file://$(nix store add-path --name busybox $(nix-store ${OPTIONS} -r /nix/store/${STOREPATH})/on-server/busybox)
```

These commands produced the following output:

```
Downloaded 'file:///nix/store/xs74wcxq3qc12plfc70fds8inbndhcfm-bootstrap-tools.tar.xz' to '/nix/store/3fal4gikp92013kac6rdmfbrch2s859b-xs74wcxq3qc12plfc70fds8inbndhcfm-bootstrap-tools.tar.xz' (hash 'sha256-0LxRd7fdafQezNJ+N2tuOfm0KEwgfRSts5fhP0e0r0s=').
Downloaded 'file:///nix/store/9ndpna6jrlac4y9fappdjm0sxx0g2bja-busybox' to '/nix/store/kb7wyy30y1gxcmdajljr26kxxac606qa-9ndpna6jrlac4y9fappdjm0sxx0g2bja-busybox' (hash 'sha256-OGO96QUzs2n5pGipn/V87AxzUY9OWKZl417nE8HdZIE=').
```

I used the hashes from the output above to create the `fetchurl` invocation which is part of this commit.

I then started the bootstrap with the following command:

```
nix build -L -f . --arg localSystem '(import ./lib).systems.examples.riscv64' hello
```

As @lovesegfault requested, here are the the `sha256sum`s of all the `on-server` components for extra verification:

```
sha256sum /nix/store/${STOREPATH}/on-server/*
```

which produced the following output:

```
d0bc5177b7dd69f41eccd27e376b6e39f9b4284c207d14adb397e13f47b4af4b  /nix/store/8a92pj40awdw585mcb9dvm4nyb03k3q3-stdenv-bootstrap-tools-riscv64-unknown-linux-gnu/on-server/bootstrap-tools.tar.xz
65f9433abb598f63c932d33351b14f686551512b1cece1e64c2d0e76aa0ec52e  /nix/store/8a92pj40awdw585mcb9dvm4nyb03k3q3-stdenv-bootstrap-tools-riscv64-unknown-linux-gnu/on-server/busybox
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant