mirror of
https://github.com/nix-community/home-manager
synced 2025-02-07 00:35:04 +01:00
thunderbird: use -unwrapped on Darwin
The wrapper derivation is not currently supported for the platform.
This commit is contained in:
parent
b93a4facb9
commit
b37a19ab7b
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@ in {
|
|||
|
||||
package = mkOption {
|
||||
type = with types; nullOr package;
|
||||
default = pkgs.thunderbird;
|
||||
default =
|
||||
if isDarwin then pkgs.thunderbird-unwrapped else pkgs.thunderbird;
|
||||
defaultText = literalExpression "pkgs.thunderbird";
|
||||
example = literalExpression "pkgs.thunderbird";
|
||||
description =
|
||||
|
|
Loading…
Add table
Reference in a new issue