lemmy-server: fix darwin (#531541)

This commit is contained in:
Yt
2026-06-14 11:38:59 +00:00
committed by GitHub
+1 -1
View File
@@ -66,7 +66,7 @@ rustPlatform.buildRustPackage rec {
# This gets installed automatically by cargoInstallHook,
# but we don't actually need it, and it leaks a reference to rustc.
postInstall = ''
postInstall = lib.optionals (!stdenv.hostPlatform.isDarwin) ''
rm $out/lib/libhtml2md.so
'';