0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Merge master into staging-next

This commit is contained in:
github-actions[bot] 2023-06-03 18:01:49 +00:00 committed by GitHub
commit d8ea5b9435
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 451 additions and 267 deletions

View file

@ -192,8 +192,6 @@ In addition to numerous new and updated packages, this release has the following
};
```
- Many `services.syncthing` options have been moved to `services.syncthing.settings`, as part of [RFC 42](https://github.com/NixOS/rfcs/pull/42)'s implementation, see [#226088](https://github.com/NixOS/nixpkgs/pull/226088).
- `podman` now uses the `netavark` network stack. Users will need to delete all of their local containers, images, volumes, etc, by running `podman system reset --force` once before upgrading their systems.
- `git-bug` has been updated to at least version 0.8.0, which includes backwards incompatible changes. The `git-bug-migration` package can be used to upgrade existing repositories.

View file

@ -2,7 +2,7 @@
, glib
, gobject-introspection
, python3
, wrapGAppsHook
, wrapGAppsNoGuiHook
, lib
}:
@ -18,7 +18,7 @@ python3.pkgs.buildPythonApplication {
strictDeps = false;
nativeBuildInputs = [
wrapGAppsHook
wrapGAppsNoGuiHook
gobject-introspection
];