diff options
| author | seth <[email protected]> | 2023-09-19 00:28:30 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-09-19 01:09:34 -0400 |
| commit | f924887c4b646aa2ce762039070f8741ab933221 (patch) | |
| tree | db81ed2b866a6a00f7ddf13c8846c6a3b1f6018d /lib/packwiz-installer.nix | |
| parent | 1c9c0ef2e40fbd1a921b446d8fe5884e645e4308 (diff) | |
feat!: introduce fetchPackwizModpack
this is a major **breaking** change, replacing previous functions such
as `mkPackwizPackages` & `mkModLinks`
Diffstat (limited to 'lib/packwiz-installer.nix')
| -rw-r--r-- | lib/packwiz-installer.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/packwiz-installer.nix b/lib/packwiz-installer.nix new file mode 100644 index 0000000..121a48f --- /dev/null +++ b/lib/packwiz-installer.nix @@ -0,0 +1,7 @@ +{fetchurl}: +fetchurl rec { + pname = "packwiz-installer"; + version = "0.5.12"; + url = "https://github.com/packwiz/packwiz-installer/releases/download/v${version}/packwiz-installer.jar"; + hash = "sha256-IGgdxgkGqQG5fmWT0fVHFJQEqAjKNdL2v+DgLuJqRjs="; +} |
