Skip to content

bug: programs.google-chrome. extensions, dictionaries, nativeMessagingHosts #9117

@Malix-Labs

Description

@Malix-Labs

Are you following the right branch?

  • My Nixpkgs and Home Manager versions are in sync

Is there an existing issue for this?

  • I have searched the existing issues

Issue description

programs.google-chrome.extensions, programs.google-chrome.dictionaries, and programs.google-chrome.nativeMessagingHosts apparently require a different implementation than other Chromium browsers

#1383 raised this issue for programs.google-chrome.extensions

and #1867 simply disabled programs.google-chrome.extensions entirely :

However, it is not fixed and could also support extensions with a specific implementation in programs.chromium.extensions

Same thing with programs.google-chrome.dictionaries :

dictionaries = mkOption {
inherit visible;
type = types.listOf types.package;
default = [ ];
example = literalExpression ''
[
pkgs.hunspellDictsChromium.en_US
]
'';
description = ''
List of ${name} dictionaries to install.
'';
};

And programs.google-chrome.nativeMessagingHosts :

nativeMessagingHosts = mkOption {
type = types.listOf types.package;
default = [ ];
example = literalExpression ''
[
pkgs.kdePackages.plasma-browser-integration
]
'';
description = ''
List of ${name} native messaging hosts to install.
'';
};

Maintainer CC

@khaneliman @berbiche

System information

N/A

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugtriageIssues or feature request that have not been triaged yet

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions