pterodactyl-nix/packages/pterodactyl.nix
kalmenn 6fbd9b2a6c
feat: Scaffold the nixos modules
The modules themselves don't work yet, but the flake does ! Yay !
(that was way too complicated wtf)
2025-07-07 04:49:01 +02:00

9 lines
237 B
Nix

{ pkgs }:
let
version = "1.11.11";
in pkgs.fetchzip {
url = "https://github.com/pterodactyl/panel/releases/download/v${ version }/panel.tar.gz";
hash = "sha256-0nOHtReVUVXYQY/glS4x0gkbhetoXSWg4rRwOJlkcM8=";
stripRoot = false;
}