···553553554554- `buildDunePackage` now defaults to `strictDeps = true` which means that any library should go into `buildInputs` or `checkInputs`. Any executable that is run on the building machine should go into `nativeBuildInputs` or `nativeCheckInputs` respectively. Example of executables are `ocaml`, `findlib` and `menhir`. PPXs are libraries which are built by dune and should therefore not go into `nativeBuildInputs`.
555555556556-- `buildFHSUserEnv` is now called `buildFHSEnv` and uses FlatPak's Bubblewrap sandboxing tool rather than Nixpkgs' own chrootenv. The old chrootenv-based implemenation is still available via `buildFHSEnvChrootenv` but is considered deprecated and will be removed when the remaining uses inside Nixpkgs have been migrated. If your FHSEnv-wrapped application misbehaves when using the new bubblewrap implementation, please create an issue in Nixpkgs.
556556+- `buildFHSUserEnv` is now called `buildFHSEnv` and uses FlatPak's Bubblewrap sandboxing tool rather than Nixpkgs' own chrootenv. The old chrootenv-based implemenation is still available via `buildFHSEnvChroot` but is considered deprecated and will be removed when the remaining uses inside Nixpkgs have been migrated. If your FHSEnv-wrapped application misbehaves when using the new bubblewrap implementation, please create an issue in Nixpkgs.
557557558558- Top-level `buildPlatform`, `hostPlatform`, `targetPlatform` have been deprecated, use `stdenv.X` instead.
559559
+2-1
nixos/modules/services/web-apps/nextcloud.nix
···381381 type = types.str;
382382 description = lib.mdDoc ''
383383 The full path to a file that contains the admin's password. Must be
384384- readable by user `nextcloud`.
384384+ readable by user `nextcloud`. The password is set only in the initial
385385+ setup of nextcloud by the systemd `nextcloud-setup.service`.
385386 '';
386387 };
387388
+2-2
pkgs/applications/audio/ardour/default.nix
···5858}:
5959stdenv.mkDerivation rec {
6060 pname = "ardour";
6161- version = "7.3";
6161+ version = "7.4";
62626363 # We can't use `fetchFromGitea` here, as attempting to fetch release archives from git.ardour.org
6464 # result in an empty archive. See https://tracker.ardour.org/view.php?id=7328 for more info.
6565 src = fetchgit {
6666 url = "git://git.ardour.org/ardour/ardour.git";
6767 rev = version;
6868- hash = "sha256-fDZGmKQ6qgENkq8NY/J67Jym+IXoOYs8DT4xyPXLcC4=";
6868+ hash = "sha256-CUGhJi3ji0F6v41Y08sQvo7oKITOJ96ojdJL+FyCxmw=";
6969 };
70707171 bundledContent = fetchzip {