some versions

This commit is contained in:
mjallen18
2026-01-15 09:29:16 -06:00
parent d47b092a8c
commit 8e7a0343c2
15 changed files with 289 additions and 492 deletions

View File

@@ -41,14 +41,17 @@
jdk17 # for RuneLite/HDOS
, # for RS3
}:
let
inherit (lib.trivial) importJSON;
versions = importJSON ./versions.json;
in
stdenv.mkDerivation rec {
pname = "bolt-launcher";
version = "0.20.6";
version = versions.bolt.version;
src = fetchzip {
url = "https://codeberg.org/Adamcake/Bolt/releases/download/${version}/Bolt-Linux.zip";
sha256 = "sha256-kQwQixUwcbyC53q5lyNdcVbMh40Ay5vmWOj4ZVEVznY=";
sha256 = versions.bolt.hash;
stripRoot = false;
};

View File

@@ -0,0 +1,9 @@
{
"bolt": {
"hash": "sha256-s0hC822fXuYiHPRE3xcLNOsZs43xhLJ+vM1cuMc9zZQ=",
"location": "codeberg",
"owner": "Adamcake",
"repo": "Bolt",
"tag": "0.20.6"
}
}