pterodactyl panel and wings
This commit is contained in:
parent
f303253c62
commit
63d52c2fd4
6 changed files with 256 additions and 0 deletions
20
pkgs/wings.nix
Normal file
20
pkgs/wings.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pterodactyl-wings";
|
||||
version = "1.11.13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pterodactyl";
|
||||
repo = "wings";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-UpYUHWM2J8nH+srdKSpFQEaPx2Rj2+YdphV8jJXcoBU=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-eWfQE9cQ7zIkITWwnVu9Sf9vVFjkQih/ZW77d6p/Iw0=";
|
||||
#subPackages = [ "." ];
|
||||
|
||||
ldflags = [
|
||||
"-X github.com/pterodactyl/wings/system.Version=${version}"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue