about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-11-24 09:46:50 +0300
committerGitHub <noreply@github.com>2023-11-24 09:46:50 +0300
commitd0e68d7078b9e883dcd2a60566c968e12a0fd267 (patch)
treeae214773f78b02f39ec01a5cb3292903a545c9da /pkgs/applications
parentc80b0906d5d0c27f59368ffc140376b8cccb2b95 (diff)
parent773778c16eb851bc26f4bb83f31bea0bbfd9e540 (diff)
Merge pull request #269515 from dpc/23-11-23-assertion-fix
wrapFirefox: fix error message
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/firefox/wrapper.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix
index 745b21eeb8074..dcb8923c423ca 100644
--- a/pkgs/applications/networking/browsers/firefox/wrapper.nix
+++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix
@@ -66,7 +66,7 @@ let
       deprecatedNativeMessagingHost = option: pkg:
         if (cfg.${option} or false)
           then
-            lib.warn "The cfg.${option} argument for `firefox.override` is deprecated, please add `pkgs.${pkg.pname}` to `nativeMessagingHosts` instead"
+            lib.warn "The cfg.${option} argument for `firefox.override` is deprecated, please add `pkgs.${pkg.pname}` to `nativeMessagingHosts.packages` instead"
             [pkg]
           else [];