testing
This commit is contained in:
parent
6fbd9b2a6c
commit
032fcb9ee6
6 changed files with 170 additions and 65 deletions
|
@ -1,9 +1,16 @@
|
|||
{ pkgs }:
|
||||
{ pkgs ? import <nixpkgs>, php ? pkgs.php }:
|
||||
|
||||
let
|
||||
php.buildComposerProject2 (finalAttrs: {
|
||||
pname = "pterodactyl-panel";
|
||||
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;
|
||||
}
|
||||
|
||||
src = pkgs.fetchzip {
|
||||
url = "https://github.com/pterodactyl/panel/releases/download/v${finalAttrs.version}/panel.tar.gz";
|
||||
hash = "sha256-0nOHtReVUVXYQY/glS4x0gkbhetoXSWg4rRwOJlkcM8=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
vendorHash = "sha256-WBzGGWCWNqvU4Ws7wBh8Ads7RBawBaxN1QNIUI4ivOQ=";
|
||||
|
||||
inherit php;
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue