{"id":29589072,"url":"https://github.com/stitchless/mac-ips2crash","last_synced_at":"2026-05-18T11:03:52.441Z","repository":{"id":158247306,"uuid":"617541087","full_name":"stitchless/mac-ips2crash","owner":"stitchless","description":"This is a simple parser that will translate an IPS formatted crash report to the older text base .crash format","archived":false,"fork":false,"pushed_at":"2023-06-26T18:04:40.000Z","size":58,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T10:29:01.458Z","etag":null,"topics":["crash","ips","macos","translation"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stitchless.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-03-22T15:48:34.000Z","updated_at":"2025-04-09T07:19:24.000Z","dependencies_parsed_at":"2023-07-28T20:20:54.000Z","dependency_job_id":null,"html_url":"https://github.com/stitchless/mac-ips2crash","commit_stats":null,"previous_names":["stitchless/mac-ips2crash","jpeizer/mac-ips2crash"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/stitchless/mac-ips2crash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stitchless%2Fmac-ips2crash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stitchless%2Fmac-ips2crash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stitchless%2Fmac-ips2crash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stitchless%2Fmac-ips2crash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stitchless","download_url":"https://codeload.github.com/stitchless/mac-ips2crash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stitchless%2Fmac-ips2crash/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266065915,"owners_count":23871259,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["crash","ips","macos","translation"],"created_at":"2025-07-20T04:02:35.549Z","updated_at":"2025-12-15T18:27:27.561Z","avatar_url":"https://github.com/stitchless.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mac-ips2crash\n\n[![Go IPS2Crash Checks](https://github.com/jpeizer/mac-ips2crash/actions/workflows/status.yml/badge.svg)](https://github.com/jpeizer/mac-ips2crash/actions/workflows/status.yml)\n\n[![Go IPS2Crash Release](https://github.com/jpeizer/mac-ips2crash/actions/workflows/release.yml/badge.svg?branch=main)](https://github.com/jpeizer/mac-ips2crash/actions/workflows/release.yml)\n\nThis is a simple tool to convert a macOS IPS file into a .crash report\nthat can be used with legacy tools and pipelines to symbolicate the crash.  It can be used as a standalone tool or as a library.\n\nThis is my first open source project I am attempting to make for public use, so if you run into any issues, don't hesitate to open an issue or PR.\n\n## Tool Usage\n```shell\n# Tool Release Binaries are available on the releases page\n# Usage as a standalone tool\nUsage of ./mac-ips2crash:\n  -i string\n        Path to IPS file\n  -o string\n        Path to output crash file\n        The file will replace any extension with .crash\n```\n\n# Library Usage\n```shell\ngo get github.com/stitchless/mac-ips2crash\n```\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"os\"\n\n    \"github.com/stitchless/mac-ips2crash\"\n)\n\nfunc main() {\n    ipsFilePath := \"/path/to/ips/file\"\n    file, err := os.ReadFile(ipsFilePath)\n    if err != nil {\n        fmt.Println(err)\n        return\n    }\n    \n    // However you have a []byte of the IPS file\n    crashReport, err := ips2crash.ProcessCrashReport(file)\n    if err != nil {\n        fmt.Println(err)\n        return\n    }\n    \n    for _, line := range crashReport.LeadingText {\n        fmt.Println(line) // Prints any test that appears before the IPS formatted file\n    }\n    \n    // Prints any text that appears after the IPS formatted file\n    for _, line := range crashReport.TrailingText {\n        fmt.Println(line)\n    }\n    \n    // Prints the first JSON object in the IPS file (the header)\n    fmt.Println(crashReport.Header)\n    \n    // Prints the second JSON object in the IPS file (the Payload)\n    fmt.Println(crashReport.Payload)\n    \n    // Prints the formatted report minus the leading and trailing text\n    fmt.Println(crashReport.FormattedReport) \n    \n    // Prints the formatted report with the leading and trailing text\n    fmt.Println(crashReport.Output) \n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstitchless%2Fmac-ips2crash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstitchless%2Fmac-ips2crash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstitchless%2Fmac-ips2crash/lists"}