{"id":31642123,"url":"https://github.com/x45iq/xmcl-nix","last_synced_at":"2026-04-20T14:05:09.191Z","repository":{"id":317937373,"uuid":"1067275079","full_name":"x45iq/xmcl-nix","owner":"x45iq","description":"XMCL Nix - Nix flake and Home Manager module for X Minecraft Launcher. Provides seamless installation, automatic Java detection, Wayland support, and declarative configuration for the modern Minecraft launcher on NixOS.","archived":false,"fork":false,"pushed_at":"2026-02-28T06:49:05.000Z","size":188,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-28T12:36:35.825Z","etag":null,"topics":["home-manager","java","launcher","minecraft","minecraft-launcher","nix","nix-flake","nixos","nixpkgs","xmcl"],"latest_commit_sha":null,"homepage":"","language":"Nix","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/x45iq.png","metadata":{"files":{"readme":"README.md","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":"2025-09-30T16:12:48.000Z","updated_at":"2026-02-28T06:49:09.000Z","dependencies_parsed_at":"2025-10-04T02:35:01.139Z","dependency_job_id":"d9b18217-06ae-46a1-8787-5a5ed71b576c","html_url":"https://github.com/x45iq/xmcl-nix","commit_stats":null,"previous_names":["x45iq/xmcl-nix"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/x45iq/xmcl-nix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fxmcl-nix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fxmcl-nix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fxmcl-nix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fxmcl-nix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/x45iq","download_url":"https://codeload.github.com/x45iq/xmcl-nix/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/x45iq%2Fxmcl-nix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32050454,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["home-manager","java","launcher","minecraft","minecraft-launcher","nix","nix-flake","nixos","nixpkgs","xmcl"],"created_at":"2025-10-07T03:56:36.294Z","updated_at":"2026-04-20T14:05:09.185Z","avatar_url":"https://github.com/x45iq.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xmcl-nix\n**X Minecraft Launcher (XMCL)** - A modern Minecraft launcher packaged for Nix and Home Manager.\nThis flake allows you to install and run [XMCL](https://github.com/Voxelum/x-minecraft-launcher) on NixOS and other systems with Nix.\n\n## ✨ Features\n- `xmcl` package with necessary runtime dependencies\n- Support for additional command line arguments\n- Automatic detection of specified JREs in XMCL\n- Generation of `java.json` configuration for available Java versions\n- Wayland and Ozone Platform support\n- Home Manager module for convenient integration\n\n## 🚀 Installation\nJust add it to your NixOS `flake.nix` or home-manager:\n\n```nix\ninputs = {\n  xmcl = {\n    url = \"github:x45iq/xmcl-nix\";\n    inputs.nixpkgs.follows = \"nixpkgs\";\n  };\n  # ...\n}\n```\n\n### Via `nix run`\n```bash\nnix run github:x45iq/xmcl-nix\n```\n\n### Home Manager Module\n```nix\n{\n  # home.nix\n  imports = [\n    inputs.xmcl.homeModules.xmcl\n  ];\n\n  programs.xmcl = {\n    enable = true;\n    commandLineArgs = [\n      \"--password-store=\\\"gnome-libsecret\\\"\"\n    ];\n    jres = [\n      pkgs.jre8\n      pkgs.temurin-jre-bin-17\n    ];\n  }; \n}\n```\n### With environment.systemPackages or home.packages\n\nTo integrate `xmcl` to your NixOS/Home Manager configuration, add the\nfollowing to your `environment.systemPackages` or `home.packages`:\n\n```nix\n# options are: 'x86_64-linux', 'aarch64-linux'\n\ninputs.xmcl.packages.\"${system}\".default\n```\n\n## ⚙️ Home Manager Module Options\n| Option                          | Type              | Default     | Description                              |\n| ------------------------------- | ----------------- | ----------- | ---------------------------------------- |\n| `programs.xmcl.enable`          | `bool`            | `false`     | Enables XMCL installation                |\n| `programs.xmcl.package`         | `package`         | `pkgs.xmcl` | XMCL package to use                      |\n| `programs.xmcl.commandLineArgs` | `list of string`  | `[]`        | Additional command line arguments        |\n| `programs.xmcl.jres`            | `list of package` | `[]`        | List of JREs available to XMCL           |\n\n## 🔧 Implementation Details\n- Automatic generation of `java.json` with information about available Java versions\n- Support for automatic detection of major and full Java versions\n- Wayland integration via Ozone Platform\n- Automatic binary patching\n- Desktop file support for integration with desktop environments\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx45iq%2Fxmcl-nix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fx45iq%2Fxmcl-nix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fx45iq%2Fxmcl-nix/lists"}