bolt-launcher: 0.15.0 -> 0.17.0 (#420019)

This commit is contained in:
Aleksana
2025-06-26 20:45:27 +08:00
committed by GitHub
2 changed files with 19 additions and 3 deletions
+11
View File
@@ -11385,6 +11385,17 @@
githubId = 6789916;
name = "Jason Odoom";
};
jaspersurmont = {
email = "jasper@surmont.dev";
github = "jaspersurmont";
githubId = 28810440;
name = "Jasper Surmont";
keys = [
{
fingerprint = "D70D 66E3 3D82 C3F8 0F31 BE15 D213 BED5 67B1 9AF5";
}
];
};
javaes = {
email = "jan+dev@vanesdonk.de";
github = "javaes";
+8 -3
View File
@@ -38,14 +38,14 @@ in
let
bolt = stdenv.mkDerivation (finalAttrs: {
pname = "bolt-launcher";
version = "0.15.0";
version = "0.17.0";
src = fetchFromGitHub {
owner = "AdamCake";
repo = "bolt";
tag = finalAttrs.version;
fetchSubmodules = true;
hash = "sha256-zEExwQRzDmV0xd3lcxFE2ZVfkyTFYZQe3/c0IWJ9C/c=";
hash = "sha256-RlWJcxSCKTbj6MNeQwweu20rPBQGzumEk42MtTAhGRU=";
};
nativeBuildInputs = [
@@ -115,6 +115,7 @@ buildFHSEnv {
xorg.libSM
xorg.libXxf86vm
xorg.libX11
xorg.libXext
glib
pango
cairo
@@ -123,6 +124,7 @@ buildFHSEnv {
libcap
libsecret
SDL2
sdl3
libGL
])
++ lib.optionals enableRS3 (
@@ -151,7 +153,10 @@ buildFHSEnv {
Bolt Launcher supports HDOS/RuneLite by default with an optional feature flag for RS3 (enableRS3).
'';
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [ nezia ];
maintainers = with lib.maintainers; [
nezia
jaspersurmont
];
platforms = lib.platforms.linux;
mainProgram = "${bolt.name}";
};