{"id":50721049,"url":"https://github.com/solanum-ircd/solanum","last_synced_at":"2026-06-27T01:01:27.688Z","repository":{"id":36995341,"uuid":"303792664","full_name":"solanum-ircd/solanum","owner":"solanum-ircd","description":"An IRCd for unified networks","archived":false,"fork":false,"pushed_at":"2026-05-24T13:32:30.000Z","size":39534,"stargazers_count":256,"open_issues_count":110,"forks_count":63,"subscribers_count":22,"default_branch":"main","last_synced_at":"2026-05-29T15:51:54.296Z","etag":null,"topics":["charybdis","hacktoberfest","irc","ircd","ircv3","ratbox","solanum"],"latest_commit_sha":null,"homepage":"https://solanum.chat/","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/solanum-ircd.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","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":"2020-10-13T18:19:43.000Z","updated_at":"2026-05-24T10:49:59.000Z","dependencies_parsed_at":"2023-02-14T14:16:10.329Z","dependency_job_id":"e36044dd-863a-4126-941a-71396ae6788c","html_url":"https://github.com/solanum-ircd/solanum","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/solanum-ircd/solanum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solanum-ircd%2Fsolanum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solanum-ircd%2Fsolanum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solanum-ircd%2Fsolanum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solanum-ircd%2Fsolanum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/solanum-ircd","download_url":"https://codeload.github.com/solanum-ircd/solanum/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/solanum-ircd%2Fsolanum/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34838035,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["charybdis","hacktoberfest","irc","ircd","ircv3","ratbox","solanum"],"created_at":"2026-06-10T00:00:33.542Z","updated_at":"2026-06-27T01:01:27.677Z","avatar_url":"https://github.com/solanum-ircd.png","language":"C","funding_links":[],"categories":["web3"],"sub_categories":[],"readme":"# solanum ![Build Status](https://github.com/solanum-ircd/solanum/workflows/CI/badge.svg)\n\nSolanum is an IRCv3 server designed to be highly scalable.  It implements IRCv3.1 and some parts of IRCv3.2.\n\nIt is meant to be used with an IRCv3-capable services implementation such as [Atheme][atheme] or [Anope][anope].\n\n   [atheme]: https://atheme.github.io/\n   [anope]: http://www.anope.org/\n\n# necessary requirements\n\n * A supported platform\n * A working dynamic library system\n * A working lex and yacc - flex and bison should work\n\n# platforms\n\nSolanum is developed on Linux with glibc, but is currently portable to most POSIX-compatible operating systems.\nHowever, this portability is likely to be removed unless someone is willing to maintain it.  If you'd like to be that\nperson, please let us know on IRC.\n\n# platform specific errata\n\nThese are known issues and workarounds for various platforms.\n\n * **FreeBSD**: if you are compiling with ipv6 you may experience\n   problems with ipv4 due to the way the socket code is written.  To\n   fix this you must: `sysctl net.inet6.ip6.v6only=0`\n\n * **Solaris**: you may have to set your `PATH` to include `/usr/gnu/bin` and `/usr/gnu/sbin` before `/usr/bin`\n   and `/usr/sbin`. When running as a 32-bit binary, it should be started as:\n\n   ```bash\n   ulimit -n 4095 ; LD_PRELOAD_32=/usr/lib/extendedFILE.so.1 ./solanum\n   ```\n\n# building\n\n```bash\nsudo apt install build-essential pkg-config meson ninja-build libsqlite3-dev flex bison # or equivalent for your distribution\nmeson setup build --optimization 2 --prefix=/path/to/installation\nmeson compile -C build/\nmeson test -C build/\nmeson install -C build/\n```\n\nSee `meson configure build/` for build options.\n\n# feature specific requirements\n\n * For SSL/TLS client and server connections, one of:\n\n   * OpenSSL 1.1.0 or newer (`-Dopenssl=enabled`)\n   * LibreSSL (`-Dopenssl=enabled`)\n   * mbedTLS (`-Dmbedtls=enabled`)\n   * GnuTLS (`-Dgnutls=enabled`)\n\n   If multiple TLS libraries are available, the build system will prefer mbedTLS \u003e OpenSSL \u003e GnuTLS.\n   Use `=enabled` instead of `=auto` to force a specific library.\n\n * For certificate-based oper CHALLENGE, OpenSSL 1.1.0 or newer.\n   (Using CHALLENGE is not recommended for new deployments, so if you want to use a different TLS library,\n    feel free.)\n\n * For ECDHE under OpenSSL, on Solaris you will need to compile your own OpenSSL on these systems, as they\n   have removed support for ECC/ECDHE.  Alternatively, consider using another library (see above).\n\n# tips\n\n * To report bugs in Solanum, visit us at `#solanum` on [Libera Chat](https://libera.chat)\n\n * Please read [doc/readme.txt](doc/readme.txt) to get an overview of the current documentation.\n\n * Read the [NEWS.md](NEWS.md) file for what's new in this release.\n\n * The files, `/etc/services`, `/etc/protocols`, and `/etc/resolv.conf`, SHOULD be\n   readable by the user running the server in order for ircd to start with\n   the correct settings.  If these files are wrong, Solanum will try to use\n   `127.0.0.1` for a resolver as a last-ditch effort.\n\n# git access\n\n * The Solanum git repository can be checked out using the following command:\n\t`git clone https://github.com/solanum-ircd/solanum`\n\n * Solanum's git repository can be browsed over the Internet at the following address:\n\thttps://github.com/solanum-ircd/solanum\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolanum-ircd%2Fsolanum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsolanum-ircd%2Fsolanum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsolanum-ircd%2Fsolanum/lists"}