···309 `services.dnsmasq.extraConfig` will be deprecated when NixOS 22.11 reaches
310 end of life.
311312-- The `dokuwiki` service now takes configuration via the `services.dokuwiki.sites.<name>.settings` attribute set, `extraConfig` is deprecated and will be removed.
313- The `{aclUse,superUser,disableActions}` attributes have been renamed, `pluginsConfig` now also accepts an attribute set of booleans, passing plain PHP is deprecated.
314- Same applies to `acl` which now also accepts structured settings.
0315316- The `zsh` package changes the way to set environment variables on NixOS systems where `programs.zsh.enable` equals `false`. It now sources `/etc/set-environment` when reading the system-level `zshenv` file. Before, it sourced `/etc/profile` when reading the system-level `zprofile` file.
317
···309 `services.dnsmasq.extraConfig` will be deprecated when NixOS 22.11 reaches
310 end of life.
311312+- The `dokuwiki` service is now configured via `services.dokuwiki.sites.<name>.settings` attribute set; `extraConfig` has been removed.
313+ The `{aclUse,superUser,disableActions}` attributes have been renamed accordingly. `pluginsConfig` now only accepts an attribute set of booleans.
314+ Passing plain PHP is no longer possible.
315+ Same applies to `acl` which now also only accepts structured `settings`.
316317- The `zsh` package changes the way to set environment variables on NixOS systems where `programs.zsh.enable` equals `false`. It now sources `/etc/set-environment` when reading the system-level `zshenv` file. Before, it sourced `/etc/profile` when reading the system-level `zprofile` file.
318
···42in
43stdenv.mkDerivation rec {
44 pname = "strawberry";
45- version = "1.0.15";
4647 src = fetchFromGitHub {
48 owner = "jonaski";
49 repo = pname;
50 rev = version;
51- hash = "sha256-P7M7UIRFr0pABNhb63pV3TqIdTP8Xox4f0BT2ii9rRE=";
52 };
5354 # the big strawberry shown in the context menu is *very* much in your face, so use the grey version instead
···42in
43stdenv.mkDerivation rec {
44 pname = "strawberry";
45+ version = "1.0.17";
4647 src = fetchFromGitHub {
48 owner = "jonaski";
49 repo = pname;
50 rev = version;
51+ hash = "sha256-Z2b3/pIdSmZUO724hkdn78YrVuRiXALbTOUs+KJMjvU=";
52 };
5354 # the big strawberry shown in the context menu is *very* much in your face, so use the grey version instead
···2122 dontDropIconThemeCache = true;
2324- postInstall = ''
25 # remove a tree of dirs with no files within
26 rm -r "$out/share/locale"
27 '';
···2122 dontDropIconThemeCache = true;
2324+ postInstall = lib.optionalString (!stdenv.hostPlatform.isMusl) ''
25 # remove a tree of dirs with no files within
26 rm -r "$out/share/locale"
27 '';
···1---- ./ci/build/npm-postinstall.sh
2-+++ ./ci/build/npm-postinstall.sh
3-@@ -102,14 +102,6 @@
4- ;;
5- esac
6-7-- mkdir -p ./lib
8--
9-- if curl -fsSL "https://github.com/coder/cloud-agent/releases/latest/download/cloud-agent-$OS-$ARCH" -o ./lib/coder-cloud-agent; then
10-- chmod +x ./lib/coder-cloud-agent
11-- else
12-- echo "Failed to download cloud agent; --link will not work"
13-- fi
14--
15- if ! vscode_install; then
16- echo "You may not have the required dependencies to build the native modules."
17- echo "Please see https://github.com/coder/code-server/blob/main/docs/npm.md"