Before 19.03, programs.beets.enable implicitly followed whether programs.beets.settings was non-empty. That compatibility branch was still active for older state versions, but it was silent. Route the default through the shared state-version helper so legacy users get a consistent deprecation warning before the implicit enablement is cleaned up. Add focused tests for the legacy and current default branches alongside the existing beets coverage. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
8 lines
326 B
Nix
8 lines
326 B
Nix
{ lib, pkgs, ... }:
|
|
lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
beets-current-disable-default = ./current-disable-default.nix;
|
|
beets-legacy-enable-default = ./legacy-enable-default.nix;
|
|
beets-mpdstats = ./mpdstats.nix;
|
|
beets-mpdstats-external = ./mpdstats-external.nix;
|
|
beets-mpdupdate = ./mpdupdate.nix;
|
|
}
|