-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: don't override scraping of nixpkgs for thunderbird suite
Instead, pick just the required packages to pass the tests. Note: we have to refer to real derivations because symlinkJoin assumes the passed derivation is a directory with files, otherwise it fails as: @thunderbird@: No such file or directory Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
- Loading branch information
1 parent
5f5ff39
commit 6314659
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
6 changes: 5 additions & 1 deletion
6
tests/modules/programs/thunderbird/thunderbird-with-firefox.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Confirm that both Firefox and Thunderbird can be configured at the same time. | ||
{ lib, realPkgs, ... }: | ||
lib.recursiveUpdate (import ./thunderbird.nix { inherit lib realPkgs; }) { | ||
programs.firefox.enable = true; | ||
programs.firefox = { | ||
enable = true; | ||
# Darwin doesn't support wrapped Firefox, using unwrapped instead | ||
package = realPkgs.firefox-unwrapped; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters