initial commit

This commit is contained in:
2026-05-14 13:39:10 +02:00
commit 7e444146d2
37 changed files with 1537 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{ lib
, stdenvNoCC
, unzip
}: stdenvNoCC.mkDerivation (finalAttrs: {
pname = "foundryvtt";
version = "14.360";
src = ./FoundryVTT-Node-14.360.zip;
unpackPhase = "${lib.getExe unzip} $src";
buildPhase = "cp -r . $out";
})