sketchybar: clean up after x86_64-darwin drop

This commit is contained in:
Emily
2026-02-18 09:00:40 +00:00
parent 4af12149d1
commit 0681d42ec6

View File

@@ -10,12 +10,6 @@
let
inherit (stdenv.hostPlatform) system;
target =
{
"aarch64-darwin" = "arm64";
}
.${system} or (throw "Unsupported system: ${system}");
in
stdenv.mkDerivation (finalAttrs: {
pname = "sketchybar";
@@ -37,7 +31,7 @@ stdenv.mkDerivation (finalAttrs: {
apple-sdk_15
];
makeFlags = [ target ];
makeFlags = [ "arm64" ];
# TODO: Remove once #536365 reaches this branch
env.NIX_CFLAGS_LINK = "-fuse-ld=lld";