discordchatexporter-cli: fix build on aarch64-darwin

This commit is contained in:
David McFarland
2026-02-16 09:55:18 -04:00
parent b75e144307
commit 63ea1c68f3
@@ -23,6 +23,12 @@ buildDotnetModule rec {
dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;
dotnetBuildFlags = [
# workaround for https://github.com/belav/csharpier/pull/1696
# remove when csharpier is updated
"-p:FirstTargetFrameworks=workaround-for-csharpier-pr-1696"
];
postFixup = ''
ln -s $out/bin/DiscordChatExporter.Cli $out/bin/discordchatexporter-cli
'';