mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-05 21:03:40 +00:00
thunderbird-esr-bin, thunderbird-latest-bin: fix wrapper
The wrapper expects `libDir` exists since1da3ca7373. This patch passes proper `libName` to the wrapper. (cherry picked from commit0820f8c4f8)
This commit is contained in:
committed by
github-actions[bot]
parent
466c2dafa1
commit
c38d7fd90f
@@ -211,7 +211,7 @@ let
|
||||
terminal = false;
|
||||
}
|
||||
// (
|
||||
if libName == "thunderbird" then
|
||||
if lib.strings.hasPrefix "thunderbird" libName then
|
||||
{
|
||||
genericName = "Email Client";
|
||||
comment = "Read and write e-mails or RSS feeds, or manage tasks on calendars.";
|
||||
|
||||
@@ -12321,6 +12321,7 @@ with pkgs;
|
||||
thunderbird-bin = thunderbird-latest-bin;
|
||||
thunderbird-latest-bin = wrapThunderbird thunderbird-latest-bin-unwrapped {
|
||||
pname = "thunderbird-bin";
|
||||
libName = "thunderbird-bin-${thunderbird-latest-bin-unwrapped.version}";
|
||||
};
|
||||
thunderbird-latest-bin-unwrapped =
|
||||
callPackage ../applications/networking/mailreaders/thunderbird-bin
|
||||
@@ -12329,6 +12330,7 @@ with pkgs;
|
||||
};
|
||||
thunderbird-esr-bin = wrapThunderbird thunderbird-esr-bin-unwrapped {
|
||||
pname = "thunderbird-esr-bin";
|
||||
libName = "thunderbird-bin-${thunderbird-esr-bin-unwrapped.version}";
|
||||
};
|
||||
thunderbird-esr-bin-unwrapped = callPackage ../applications/networking/mailreaders/thunderbird-bin {
|
||||
generated = import ../applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix;
|
||||
|
||||
Reference in New Issue
Block a user