summary refs log tree commit diff
path: root/nixos/tests/firefox.nix
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2021-06-10 09:27:31 +0200
committerVladimír Čunát <v@cunat.cz>2021-06-10 09:46:55 +0200
commit2ee781417e9da2b553db0ab777aa89cd81fab54e (patch)
tree65ac966996a7647dabb658dd5f2250efa5f8add5 /nixos/tests/firefox.nix
parent5f16549ccfcc896af2c7041e474c8fb55b1218bf (diff)
downloadnixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar.gz
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar.bz2
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar.lz
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar.xz
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.tar.zst
nixpkgs-2ee781417e9da2b553db0ab777aa89cd81fab54e.zip
nixos/*: replace alsa* aliases
The attributes got renamed in PR #126440 and in some places this caused
evaluation errors, e.g. the tarball job was saying (locally)
> attribute 'alsaUtils' missing, at /build/source/nixos/modules/services/audio/alsa.nix:6:4
and I suspect that trunk-combined jobset's failure to evaluate was also caused.
Diffstat (limited to 'nixos/tests/firefox.nix')
-rw-r--r--nixos/tests/firefox.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/firefox.nix b/nixos/tests/firefox.nix
index 4262f5443bf..2e27ac302af 100644
--- a/nixos/tests/firefox.nix
+++ b/nixos/tests/firefox.nix
@@ -46,7 +46,7 @@ import ./make-test-python.nix ({ pkgs, esr ? false, ... }: {
 
       systemd.services.audio-recorder = {
         description = "Record NixOS test audio to /tmp/record.wav";
-        script = "${pkgs.alsaUtils}/bin/arecord -D recorder -f S16_LE -r48000 /tmp/record.wav";
+        script = "${pkgs.alsa-utils}/bin/arecord -D recorder -f S16_LE -r48000 /tmp/record.wav";
       };
 
     };