summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-17 00:46:24 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-17 00:46:24 +0100
commit478409d4c69e0766e304de3b2b6d5ab45470f96a (patch)
treea6837a68593dbe8abd43900a6d50cdda32fddc41
parent32872d16eef1291c9dc658b16e43d07eda3a20bf (diff)
downloadnixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar.gz
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar.bz2
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar.lz
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar.xz
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.tar.zst
nixpkgs-478409d4c69e0766e304de3b2b6d5ab45470f96a.zip
alsa-utils: fix eval
-rw-r--r--nixos/doc/manual/release-notes/rl-2305.section.md2
-rw-r--r--pkgs/by-name/al/alsa-utils/package.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md
index 0b54b8b32a3..21c798b3b4a 100644
--- a/nixos/doc/manual/release-notes/rl-2305.section.md
+++ b/nixos/doc/manual/release-notes/rl-2305.section.md
@@ -660,5 +660,5 @@ If reloading the module is not an option, proceed to [Nuclear option](#sec-relea
 
 #### Nuclear option {#sec-release-23.05-migration-pipewire-nuclear}
 If all else fails, you can still manually copy the contents of the default configuration file
-from `${pkgs.pipewire.lib}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default.
+from `${pkgs.pipewire}/share/pipewire` to `/etc/pipewire` and edit it to fully override the default.
 However, this should be done only as a last resort. Please talk to the Pipewire maintainers if you ever need to do this.
diff --git a/pkgs/by-name/al/alsa-utils/package.nix b/pkgs/by-name/al/alsa-utils/package.nix
index 5894f064326..401c66beb70 100644
--- a/pkgs/by-name/al/alsa-utils/package.nix
+++ b/pkgs/by-name/al/alsa-utils/package.nix
@@ -17,7 +17,7 @@
 }:
 
 let
-  plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire.lib;
+  plugin-packages = [ alsa-plugins ] ++ lib.optional withPipewireLib pipewire;
 
   # Create a directory containing symlinks of all ALSA plugins.
   # This is necessary because ALSA_PLUGIN_DIR must reference only one directory.