feat: remove foundry zip to reduce git size
This commit is contained in:
parent
8c5aac0f07
commit
fcf75e7695
3 changed files with 39 additions and 2 deletions
|
|
@ -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 ];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue