summaryrefslogtreecommitdiff
path: root/lib/packwiz-installer-bootstrap.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-19 00:28:30 -0400
committerseth <[email protected]>2023-09-19 01:09:34 -0400
commitf924887c4b646aa2ce762039070f8741ab933221 (patch)
treedb81ed2b866a6a00f7ddf13c8846c6a3b1f6018d /lib/packwiz-installer-bootstrap.nix
parent1c9c0ef2e40fbd1a921b446d8fe5884e645e4308 (diff)
feat!: introduce fetchPackwizModpack
this is a major **breaking** change, replacing previous functions such as `mkPackwizPackages` & `mkModLinks`
Diffstat (limited to 'lib/packwiz-installer-bootstrap.nix')
-rw-r--r--lib/packwiz-installer-bootstrap.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/packwiz-installer-bootstrap.nix b/lib/packwiz-installer-bootstrap.nix
new file mode 100644
index 0000000..b456567
--- /dev/null
+++ b/lib/packwiz-installer-bootstrap.nix
@@ -0,0 +1,7 @@
+{fetchurl}:
+fetchurl rec {
+ pname = "packwiz-installer-bootstrap";
+ version = "0.0.3";
+ url = "https://github.com/packwiz/packwiz-installer-bootstrap/releases/download/v${version}/packwiz-installer-bootstrap.jar";
+ hash = "sha256-qPuyTcYEJ46X9GiOgtPZGjGLmO/AjV2/y8vKtkQ9EWw=";
+}