Unverified Commit 94e79f47 authored by nixpkgs-ci[bot]'s avatar nixpkgs-ci[bot] Committed by GitHub
Browse files

Merge master into staging-next

parents 03e8920c a1e822ab
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -214,6 +214,12 @@ code, while others choose not to.

In Nix, there are multiple approaches to building a Composer-based project.

::: {.warning}
`buildComposerProject2` has a [known bug](https://github.com/NixOS/nixpkgs/issues/451395)
where the `vendorHash` changes every time a Composer release happens that changes the
`autoload.php` or vendored composer code.
:::

One such method is the `php.buildComposerProject2` helper function, which serves
as a wrapper around `mkDerivation`.

+6 −0
Original line number Diff line number Diff line
@@ -7880,6 +7880,12 @@
    githubId = 21313906;
    name = "EsAu";
  };
  esch = {
    name = "Austin Eschweiler";
    github = "Eschguy";
    githubId = 8880292;
    email = "austin.eschweiler@gmail.com";
  };
  esclear = {
    github = "esclear";
    githubId = 7432848;
+0 −6
Original line number Diff line number Diff line
@@ -824,12 +824,6 @@
  "module-services-glance-quickstart": [
    "index.html#module-services-glance-quickstart"
  ],
  "module-services-filesender": [
    "index.html#module-services-filesender"
  ],
  "module-services-filesender-quickstart": [
    "index.html#module-services-filesender-quickstart"
  ],
  "module-services-discourse": [
    "index.html#module-services-discourse"
  ],
+2 −2
Original line number Diff line number Diff line
@@ -92,7 +92,7 @@ The pre-existing `services.ankisyncd` has been marked deprecated and will be dro

- [FCast Receiver](https://fcast.org), an open-source alternative to Chromecast and AirPlay. Available as [programs.fcast-receiver](#opt-programs.fcast-receiver.enable).

- [FileSender](https://filesender.org/), a file sharing software. Available as [services.filesender](#opt-services.filesender.enable).
- [FileSender](https://filesender.org/), a file sharing software. Available as `services.filesender`.

- [Firefly-iii](https://www.firefly-iii.org), a free and open source personal finance manager. Available as [services.firefly-iii](#opt-services.firefly-iii.enable).

@@ -178,7 +178,7 @@ The pre-existing `services.ankisyncd` has been marked deprecated and will be dro

- [Scrutiny](https://github.com/AnalogJ/scrutiny), a S.M.A.R.T monitoring tool for hard disks with a web frontend. Available as [services.scrutiny](#opt-services.scrutiny.enable).

- [SimpleSAMLphp](https://simplesamlphp.org/), an application written in native PHP that deals with authentication (SQL, .htpasswd, YubiKey, LDAP, PAPI, Radius). Available as [services.simplesamlphp](#opt-services.simplesamlphp).
- [SimpleSAMLphp](https://simplesamlphp.org/), an application written in native PHP that deals with authentication (SQL, .htpasswd, YubiKey, LDAP, PAPI, Radius). Available as `services.simplesamlphp`.

- `systemd`'s `gateway`, `upload`, and `remote` services, which provide ways of sending journals across the network. Enable using [services.journald.gateway](#opt-services.journald.gateway.enable), [services.journald.upload](#opt-services.journald.upload.enable), and [services.journald.remote](#opt-services.journald.remote.enable).

+4 −0
Original line number Diff line number Diff line
@@ -346,8 +346,12 @@

- `bcachefs` file systems will now use the out-of-tree module for supported kernels. The in-tree module is unmaintained and users are strongly recommended to switch to kernels that support the out-of-tree module.

- `services.filesender` and the package `filesender` have been removed because they depend on `simplesamlphp`.

- `services.gitea` supports sending notifications with sendmail again. To do this, activate the parameter `services.gitea.mailerUseSendmail` and configure SMTP server.

- `simplesamlphp` has been removed since the package was severely outdated, unmaintained in nixpkgs and having known vulnerabilities.

- `networking.wireless.networks.<name>` now has an option to specify SSID, hence allowing duplicated SSID setup. The BSSID option is added along side with this.

- Revamp of the ACME certificate acquisication and renewal process to help scale systems with lots (100+) of certificates.
Loading