diff options
Diffstat (limited to 'pkg/index.html')
| -rw-r--r-- | pkg/index.html | 61 | +61 −0 |
1 files changed, 61 insertions, 0 deletions
diff --git a/pkg/index.html b/pkg/index.html new file mode 100644 --- /dev/null +++ b/pkg/index.html @@ -0,0 +1,61 @@ +<!-- + Copyright (c) 2026 Nikolay Govorov + SPDX-License-Identifier: AGPL-3.0-or-later +--> +<!DOCTYPE html> +<html lang="en"> + +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>Mirum - Package Repository</title> + <style> + body { font-family: system-ui, sans-serif; max-width: 720px; margin: 2rem auto; padding: 0 1rem; line-height: 1.6; color: #1a1a1a; } + h1 { margin-bottom: 0.25rem; } + h1 + p { color: #555; margin-top: 0; } + h2 { margin-top: 2rem; } + pre { background: #f4f4f4; padding: 1rem; overflow-x: auto; border-radius: 4px; } + .warn { background: #fff3cd; padding: 0.75rem 1rem; border-radius: 4px; margin-bottom: 1.5rem; } + </style> +</head> + +<body> + <h1>Install Mirum</h1> + + <p>An experimental CI built around virtual machines and Starlark</p> + + <div class="warn">This project is in its infancy and is <strong>not</strong> intended for production use.</div> + + <h2>Debian / Ubuntu</h2> + <pre><code>curl -fsSL https://dl.mirum.dev/public.gpg | sudo gpg --dearmor -o /usr/share/keyrings/mirum.gpg +echo "deb [signed-by=/usr/share/keyrings/mirum.gpg] https://dl.mirum.dev/apt/ nightly main" | sudo tee /etc/apt/sources.list.d/mirum.list +sudo apt update && sudo apt install mirum + +sudo systemctl enable --now mirumd</code></pre> + + <h2>Fedora / RHEL</h2> + <pre><code># DNF5 (Fedora 41+, RHEL 10+) +sudo dnf config-manager addrepo --from-repofile=https://dl.mirum.dev/rpm/nightly/mirum-nightly.repo + +# DNF4 (Fedora 40 and older, RHEL 8/9) +sudo curl -o /etc/yum.repos.d/mirum-nightly.repo https://dl.mirum.dev/rpm/nightly/mirum-nightly.repo + +sudo dnf install mirum +sudo systemctl enable --now mirumd</code></pre> + + <h2>openSUSE</h2> + <pre><code>sudo rpm --import https://dl.mirum.dev/public.gpg +sudo zypper addrepo https://dl.mirum.dev/rpm/nightly/ mirum-nightly +sudo zypper refresh +sudo zypper install mirum + +sudo systemctl enable --now mirumd</code></pre> + + <hr style="margin-top: 2rem"> + <p style="color: #555; font-size: 0.9em"> + This is a package download server. For documentation and source code, visit + <a href="https://github.com/dimidiumlabs/mirum">github.com/dimidiumlabs/mirum</a>. + </p> +</body> + +</html> |
