{"id":49882380,"url":"https://github.com/thepanoc95/mirix","last_synced_at":"2026-05-15T15:36:18.784Z","repository":{"id":339288447,"uuid":"1159365960","full_name":"thepanoc95/mirix","owner":"thepanoc95","description":"An lazy kernel","archived":false,"fork":false,"pushed_at":"2026-04-09T00:15:51.000Z","size":205277,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-22T01:40:05.927Z","etag":null,"topics":["binary-format","bsd","compiler","cross-platform","emacs","gcc","gnu","kernel","lazykernel","lisp","lisp-machine","microkernel","msdos5","multi-arch","osdev","platform-agnostic","posix","posix-compliant","unix"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thepanoc95.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-16T16:37:40.000Z","updated_at":"2026-04-04T14:51:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/thepanoc95/mirix","commit_stats":null,"previous_names":["oakymacintosh/mirix","thepanoc95/mirix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thepanoc95/mirix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepanoc95%2Fmirix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepanoc95%2Fmirix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepanoc95%2Fmirix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepanoc95%2Fmirix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thepanoc95","download_url":"https://codeload.github.com/thepanoc95/mirix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thepanoc95%2Fmirix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33071446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T11:35:32.926Z","status":"ssl_error","status_checked_at":"2026-05-15T11:35:31.362Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["binary-format","bsd","compiler","cross-platform","emacs","gcc","gnu","kernel","lazykernel","lisp","lisp-machine","microkernel","msdos5","multi-arch","osdev","platform-agnostic","posix","posix-compliant","unix"],"created_at":"2026-05-15T15:36:18.138Z","updated_at":"2026-05-15T15:36:18.777Z","avatar_url":"https://github.com/thepanoc95.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"#+TITLE: The Mirix Operating System\n#+AUTHOR: Miguel V. Mesquita (OakyMacintosh)\n\n* Really, another kernel?...\nNot Just a kernel my dear, its a Lazy Kernel, its not the one who\ncommands your computer, nah ah, it pretends it does, Mirix is meant\nto be an portable universal and multiplatform hosted kernel which\nruns as a userland application on any OS and even on Emacs.\n\n** How that fringus is baked\n First, get two UNIX PIDs- kiddin!! It is built in Lisp and compiled\n into Lisp bytecode, but not **Common Lisp** but **Emacs Lisp**, cuz\n y'know, so it can work in Emacs; And it has some Genera-like functions,\n like:\n\n #+begin_src emacs-lisp\n   ;; login as root (yes, Mirix has an root user and is UNIX-like)\n   (si:set-user 'root)\n\n   ;; logged in (thats a shell, but also a lisp interpreter)\n   \u0026root% #start\n     (defun hello ()\n        (si:writeln #'nolog \"Hello, World!\")) #end\n   NIL%\n   \u0026root% (hello)\n   Hello, World!\n   ;; also it has some built-in apis!\n   \u0026root% #start\n   (require 'mirix/std)\n\n   (defun trylog ()\n     (si:syslog #'0)\n     (si:set-uid -1))\n   (defun logall ()\n     (std:writeln #'system-msg \"Hello from Mirix!\")\n     (trylog))\n   \u0026root% (logall)\n   [1775088720] *0 (log) Hello from Mirix!      (nil)\n #+end_src\n\n** Building from source\nMirix just uses **make** (**GNU Make**) as its build system.\n\njust run:\n#+begin_src bash\n  # build release, create rootfs, prepare rootfs for prefix, and use the C \u003c-\u003e ELisp bridge.\n  $ make RELEASE=1 MAKEROOTFS=1 ROOTPREFIX=/opt/mirix C2LISP=1\n  # build a basic C compiler (Lisp) **not even made yet**\n  $ make clangl PREFIX=/opt/mirix/sys\n#+end_src\n\nBut note that it is recommended to run `eval-buffer` on **GNU Emacs** with `kernel/build.el` open.\nSince that script will politely ask Emacs to compile everything.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepanoc95%2Fmirix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthepanoc95%2Fmirix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthepanoc95%2Fmirix/lists"}