Merge pull request #267984 from NixOS/pipewire-eval-fix

alsa-utils: fix eval

authored by Weijia Wang and committed by GitHub cd5199d3 32872d16

+2 -2
+1 -1
nixos/doc/manual/release-notes/rl-2305.section.md
··· 660 660 661 661 #### Nuclear option {#sec-release-23.05-migration-pipewire-nuclear} 662 662 If all else fails, you can still manually copy the contents of the default configuration file 663 - from `${pkgs.pipewire.lib}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default. 663 + from `${pkgs.pipewire}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default. 664 664 However, this should be done only as a last resort. Please talk to the Pipewire maintainers if you ever need to do this.
+1 -1
pkgs/by-name/al/alsa-utils/package.nix
··· 17 17 }: 18 18 19 19 let 20 - plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire.lib; 20 + plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire; 21 21 22 22 # Create a directory containing symlinks of all ALSA plugins. 23 23 # This is necessary because ALSA_PLUGIN_DIR must reference only one directory.