{"id":15711571,"url":"https://github.com/jahkeup/nachos","last_synced_at":"2026-01-20T14:34:21.416Z","repository":{"id":43807321,"uuid":"432325262","full_name":"jahkeup/nachos","owner":"jahkeup","description":"Nachos makes universal Mach-Os available elsewhere","archived":false,"fork":false,"pushed_at":"2022-02-18T02:45:04.000Z","size":24,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-11T10:41:23.922Z","etag":null,"topics":["executable","go","lipo","macho","macos","universal-binary"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jahkeup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-26T23:37:17.000Z","updated_at":"2021-12-15T15:07:33.000Z","dependencies_parsed_at":"2022-09-07T03:52:01.273Z","dependency_job_id":null,"html_url":"https://github.com/jahkeup/nachos","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jahkeup/nachos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahkeup%2Fnachos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahkeup%2Fnachos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahkeup%2Fnachos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahkeup%2Fnachos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jahkeup","download_url":"https://codeload.github.com/jahkeup/nachos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahkeup%2Fnachos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28604959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T12:01:53.233Z","status":"ssl_error","status_checked_at":"2026-01-20T12:01:46.545Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["executable","go","lipo","macho","macos","universal-binary"],"created_at":"2024-10-03T21:13:22.087Z","updated_at":"2026-01-20T14:34:21.400Z","avatar_url":"https://github.com/jahkeup.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nachos: a library to FAT-en Mach-O binaries\n\n`nachos` is a library that provides a Mach-O FAT binary creation API.\n\nThe library creates a universal, or FAT, binary for a set of given Mach-O binaries, compiled for a number of platforms - currently `ppc`, `x86_64` (or `amd64`), and `arm64`.\n\n## example\n\n\n``` go\n// Read Mach-O headers from files to be nachoed into a universal binary.\nfiles := []fs.File{arm, amd}\nexes := []nachos.Executable{}\nfor i := range files {\n    exe, err := nachos.NewFileExe(files[i])\n    if err != nil {\n        panic(err)\n    }\n    exes = append(exes, exe)\n}\n\n// Build a universal binary from the individual binaries.\nres, err := nachos.NewUniversalBinary(exes...)\nif err != nil { /* TODO */ }\n\n// Write to an output file, the universal binary file itself.\nio.Copy(out, res)\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjahkeup%2Fnachos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjahkeup%2Fnachos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjahkeup%2Fnachos/lists"}