feat: remove foundry zip to reduce git size

This commit is contained in:
Dominik Polakovics Polakovics 2026-04-03 13:38:14 +02:00
parent 8c5aac0f07
commit fcf75e7695
3 changed files with 39 additions and 2 deletions

View file

@ -1,10 +1,13 @@
{ stdenv, lib, unzip }:
{ stdenv, lib, fetchurl, unzip }:
stdenv.mkDerivation rec {
pname = "foundry-vtt";
version = "13.350";
src = ./FoundryVTT-Node-13.350.zip;
src = fetchurl {
url = "https://feeds.cloonar.com/FoundryVTT-Node-${version}.zip";
hash = "sha256-r7tUdUNd2SneqqLJYgiElnnZJm94fhKcAQPVyo2zc8o=";
};
nativeBuildInputs = [ unzip ];