ocis_5-bin: drop x86_64-darwin from update script

This commit is contained in:
Emily
2026-02-18 06:42:20 +00:00
parent be7c3430b1
commit 3c24812124
2 changed files with 1 additions and 3 deletions

View File

@@ -30,7 +30,6 @@ let
hash_amd64-linux = "sha256-tmUfDKLO35qCs1hauJQKhJhcnMhqOpcqDFtAggMFhLE=";
hash_arm64-linux = "sha256-ggRDW1cnTHMQKvOvCDH3eptH3O3PgYaondlzOGHTjio=";
hash_arm-linux = "sha256-uMLRow1NeHufSI5B4k5qSIfH3lTxg+WxzLxgdedAz40=";
hash_amd64-darwin = "sha256-LZ6n/f2MdbFaPnBCoJqZZ7HQiLG3Z6ZoatgFsxaFvMc=";
hash_arm64-darwin = "sha256-k5X2ZInFS/HlToOZPX23TRJqlx/XM1ZG++Xr4BHn8SY=";
}
."hash_${arch}-${os}";
@@ -73,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.intersectLists lib.platforms.linux (
lib.platforms.arm ++ lib.platforms.aarch64 ++ lib.platforms.x86
))
++ (lib.intersectLists lib.platforms.darwin (lib.platforms.aarch64 ++ lib.platforms.x86_64));
++ lib.platforms.darwin;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
mainProgram = "ocis";

View File

@@ -251,7 +251,6 @@ def main():
systems = [
("darwin", "arm64", "aarch64-darwin"),
("darwin", "amd64", "x86_64-darwin"),
("linux", "arm64", "aarch64-linux"),
("linux", "arm", "armv7l-linux"),
("linux", "amd64", "x86_64-linux"),