···146146 </listitem>147147 <listitem>148148 <para>149149+ In <literal>mastodon</literal> it is now necessary to specify150150+ location of file with <literal>PostgreSQL</literal> database151151+ password. In152152+ <literal>services.mastodon.database.passwordFile</literal>153153+ parameter default value154154+ <literal>/var/lib/mastodon/secrets/db-password</literal> has155155+ been changed to <literal>null</literal>.156156+ </para>157157+ </listitem>158158+ <listitem>159159+ <para>149160 The <literal>nix.readOnlyStore</literal> option has been150161 renamed to <literal>boot.readOnlyNixStore</literal> to clarify151162 that it configures the NixOS boot process, not the Nix daemon.···217206 <para>218207 The minimal ISO image now uses the219208 <literal>nixos/modules/profiles/minimal.nix</literal> profile.209209+ </para>210210+ </listitem>211211+ <listitem>212212+ <para>213213+ <literal>mastodon</literal> now supports connection to a214214+ remote <literal>PostgreSQL</literal> database.220215 </para>221216 </listitem>222217 <listitem>
+4
nixos/doc/manual/release-notes/rl-2305.section.md
···43434444- Qt 5.12 and 5.14 have been removed, as the corresponding branches have been EOL upstream for a long time. This affected under 10 packages in nixpkgs, largely unmaintained upstream as well, however, out-of-tree package expressions may need to be updated manually.45454646+- In `mastodon` it is now necessary to specify location of file with `PostgreSQL` database password. In `services.mastodon.database.passwordFile` parameter default value `/var/lib/mastodon/secrets/db-password` has been changed to `null`.4747+4648- The `nix.readOnlyStore` option has been renamed to `boot.readOnlyNixStore` to clarify that it configures the NixOS boot process, not the Nix daemon.47494850## Other Notable Changes {#sec-release-23.05-notable-changes}···6563- To reduce closure size in `nixos/modules/profiles/minimal.nix` profile disabled installation documentations and manuals. Also disabled `logrotate` and `udisks2` services.66646765- The minimal ISO image now uses the `nixos/modules/profiles/minimal.nix` profile.6666+6767+- `mastodon` now supports connection to a remote `PostgreSQL` database.68686969- A new `virtualisation.rosetta` module was added to allow running `x86_64` binaries through [Rosetta](https://developer.apple.com/documentation/apple-silicon/about-the-rosetta-translation-environment) inside virtualised NixOS guests on Apple silicon. This feature works by default with the [UTM](https://docs.getutm.app/) virtualisation [package](https://search.nixos.org/packages?channel=unstable&show=utm&from=0&size=1&sort=relevance&type=packages&query=utm).7070
···6363 chmod -R +w "$unpackDir"6464 ''6565 + (if stripRoot then ''6666- if [ $(ls "$unpackDir" | wc -l) != 1 ]; then6666+ if [ $(ls -A "$unpackDir" | wc -l) != 1 ]; then6767 echo "error: zip file must contain a single file or directory."6868 echo "hint: Pass stripRoot=false; to fetchzip to assume flat list of files."6969 exit 17070 fi7171- fn=$(cd "$unpackDir" && echo *)7171+ fn=$(cd "$unpackDir" && ls -A)7272 if [ -f "$unpackDir/$fn" ]; then7373 mkdir $out7474 fi
···2323 homepage = "https://launchpad.net/subunit";2424 license = licenses.asl20;2525 platforms = platforms.all;2626- # never built on aarch64-darwin since first introduction in nixpkgs2727- broken = stdenv.isDarwin && stdenv.isAarch64;2826 };2927}
···12121313# Version of Pulumi from1414# https://www.pulumi.com/docs/get-started/install/versions/1515-VERSION="3.46.0"1515+VERSION="3.49.0"16161717# An array of plugin names. The respective repository inside Pulumi's1818# Github organization is called pulumi-$name by convention.
+2-2
pkgs/tools/audio/abcmidi/default.nix
···2233stdenv.mkDerivation rec {44 pname = "abcMIDI";55- version = "2022.12.05";55+ version = "2022.12.09";6677 src = fetchzip {88 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip";99- hash = "sha256-DLPew6pz+ABgdxSdHSX62VieRnTvbaj2sY3ujti1aj0=";99+ hash = "sha256-sDJBfDH8RgoaFtOvO01jzqbYkGtmDGRQps7axXttYQI=";1010 };11111212 meta = with lib; {