Compare commits
2 commits
041572f603
...
c1772d69fc
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c1772d69fc | ||
![]() |
2eb738acfb |
2 changed files with 29 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
sources = import ./../../../shared/sources;
|
sources = import ./../../../shared/sources;
|
||||||
|
@ -114,7 +114,12 @@ in {
|
||||||
# meta
|
# meta
|
||||||
mine.shared.meta.drasl = rec {
|
mine.shared.meta.drasl = rec {
|
||||||
name = "Drasl";
|
name = "Drasl";
|
||||||
description = ''Yggdrasil-compatible API server for Minecraft'';
|
description = ''
|
||||||
|
Yggdrasil-compatible API server for Minecraft, which can be used instead of the official Minecraft authentication server.
|
||||||
|
This means that we do not require Mojangs servers, to authenticate with any server managed by ${config.mine.shared.settings.brand}.
|
||||||
|
|
||||||
|
It is possible to login with OIDC on Drasl, and then import your Mojang player into Drasl.
|
||||||
|
'';
|
||||||
url = "https://${svc_domain}";
|
url = "https://${svc_domain}";
|
||||||
|
|
||||||
package = let
|
package = let
|
||||||
|
@ -122,6 +127,26 @@ in {
|
||||||
in {
|
in {
|
||||||
name = pkg.pname;
|
name = pkg.pname;
|
||||||
version = pkg.version;
|
version = pkg.version;
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Yggdrasil-compatible API server for Minecraft";
|
||||||
|
license = lib.licenses.gpl3Only;
|
||||||
|
homepage = "https://github.com/unmojang/drasl";
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# TODO(eyJhb): this should not be placed here
|
||||||
|
mine.shared.meta.minecraft = rec {
|
||||||
|
name = "Minecraft";
|
||||||
|
description = ''We're running a vanilla Minecraft hosted externally by a member'';
|
||||||
|
url = "mcvanilla.${config.mine.shared.settings.domain}";
|
||||||
|
|
||||||
|
package = let
|
||||||
|
pkg = pkgs.minecraft-server;
|
||||||
|
in {
|
||||||
|
name = pkg.pname;
|
||||||
|
version = "1.21.5";
|
||||||
meta = pkg.meta;
|
meta = pkg.meta;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,8 +33,8 @@ in {
|
||||||
|
|
||||||
# meta
|
# meta
|
||||||
mine.shared.meta.searx = {
|
mine.shared.meta.searx = {
|
||||||
name = "searX";
|
name = "searXNG";
|
||||||
description = "We host our own searX, use it to search the web!";
|
description = "We host our own searXNG, use it to search the web!";
|
||||||
url = "https://${svc_domain}";
|
url = "https://${svc_domain}";
|
||||||
|
|
||||||
package = let
|
package = let
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue