treewide: add bolt-launcher until it's merged in nixpkgs
This commit is contained in:
parent
23fc7f2f45
commit
1a61ae4ac4
4 changed files with 194 additions and 14 deletions
|
@ -1,15 +1,23 @@
|
||||||
{pkgs, ...}: {
|
{
|
||||||
home.packages = with pkgs; [
|
inputs,
|
||||||
bottles
|
pkgs,
|
||||||
lutris
|
...
|
||||||
mangohud
|
}: {
|
||||||
path-of-building
|
home.packages = [
|
||||||
protonplus
|
pkgs.bottles
|
||||||
r2modman
|
pkgs.lutris
|
||||||
|
pkgs.mangohud
|
||||||
|
pkgs.path-of-building
|
||||||
|
pkgs.protonplus
|
||||||
|
pkgs.r2modman
|
||||||
|
|
||||||
# steamtinkerlaunch dependencies
|
pkgs
|
||||||
xdotool
|
. # steamtinkerlaunch dependencies
|
||||||
xorg.xwininfo
|
pkgs
|
||||||
yad
|
.xdotool
|
||||||
|
pkgs.xorg.xwininfo
|
||||||
|
pkgs.yad
|
||||||
|
|
||||||
|
inputs.self.packages.${pkgs.system}.bolt-launcher
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
171
pkgs/bolt-launcher.nix
Normal file
171
pkgs/bolt-launcher.nix
Normal file
|
@ -0,0 +1,171 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
makeWrapper,
|
||||||
|
cmake,
|
||||||
|
ninja,
|
||||||
|
libarchive,
|
||||||
|
libz,
|
||||||
|
jdk17,
|
||||||
|
libcef,
|
||||||
|
luajit,
|
||||||
|
xorg,
|
||||||
|
mesa,
|
||||||
|
glib,
|
||||||
|
nss,
|
||||||
|
nspr,
|
||||||
|
atk,
|
||||||
|
at-spi2-atk,
|
||||||
|
libdrm,
|
||||||
|
expat,
|
||||||
|
libxkbcommon,
|
||||||
|
gtk3,
|
||||||
|
pango,
|
||||||
|
cairo,
|
||||||
|
alsa-lib,
|
||||||
|
dbus,
|
||||||
|
at-spi2-core,
|
||||||
|
cups,
|
||||||
|
systemd,
|
||||||
|
buildFHSEnv,
|
||||||
|
}: let
|
||||||
|
cef = libcef.overrideAttrs (_: {
|
||||||
|
installPhase = let
|
||||||
|
gl_rpath = lib.makeLibraryPath [
|
||||||
|
stdenv.cc.cc.lib
|
||||||
|
];
|
||||||
|
rpath = lib.makeLibraryPath [
|
||||||
|
glib
|
||||||
|
nss
|
||||||
|
nspr
|
||||||
|
atk
|
||||||
|
at-spi2-atk
|
||||||
|
libdrm
|
||||||
|
expat
|
||||||
|
xorg.libxcb
|
||||||
|
libxkbcommon
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXrandr
|
||||||
|
mesa
|
||||||
|
gtk3
|
||||||
|
pango
|
||||||
|
cairo
|
||||||
|
alsa-lib
|
||||||
|
dbus
|
||||||
|
at-spi2-core
|
||||||
|
cups
|
||||||
|
xorg.libxshmfence
|
||||||
|
systemd
|
||||||
|
];
|
||||||
|
in ''
|
||||||
|
mkdir -p $out/lib/ $out/share/cef/
|
||||||
|
cp libcef_dll_wrapper/libcef_dll_wrapper.a $out/lib/
|
||||||
|
cp -r ../Resources/* $out/lib/
|
||||||
|
cp -r ../Release/* $out/lib/
|
||||||
|
patchelf --set-rpath "${rpath}" $out/lib/libcef.so
|
||||||
|
patchelf --set-rpath "${gl_rpath}" $out/lib/libEGL.so
|
||||||
|
patchelf --set-rpath "${gl_rpath}" $out/lib/libGLESv2.so
|
||||||
|
cp ../Release/*.bin $out/share/cef/
|
||||||
|
cp -r ../Resources/* $out/share/cef/
|
||||||
|
cp -r ../include $out
|
||||||
|
cp -r ../libcef_dll $out
|
||||||
|
cp -r ../cmake $out
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
bolt = stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "bolt-launcher";
|
||||||
|
version = "0.9.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "AdamCake";
|
||||||
|
repo = "bolt";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
fetchSubmodules = true;
|
||||||
|
hash = "sha256-LIlRDcUWbQwIhFjtqYF+oVpTOPZ7IT0vMgysEVyJ1k8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
ninja
|
||||||
|
luajit
|
||||||
|
makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
mesa
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libxcb
|
||||||
|
libarchive
|
||||||
|
libz
|
||||||
|
cef
|
||||||
|
jdk17
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-D CMAKE_BUILD_TYPE=Release"
|
||||||
|
"-D BOLT_LUAJIT_INCLUDE_DIR=${luajit}/include"
|
||||||
|
"-G Ninja"
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
mkdir -p cef/dist/Release cef/dist/Resources cef/dist/include
|
||||||
|
|
||||||
|
ln -s ${cef}/lib/* cef/dist/Release
|
||||||
|
|
||||||
|
ln -s ${cef}/share/cef/*.pak cef/dist/Resources
|
||||||
|
ln -s ${cef}/share/cef/icudtl.dat cef/dist/Resources
|
||||||
|
ln -s ${cef}/share/cef/locales cef/dist/Resources
|
||||||
|
|
||||||
|
ln -s ${cef}/include/* cef/dist/include
|
||||||
|
ln -s ${cef}/libcef_dll cef/dist/libcef_dll
|
||||||
|
|
||||||
|
ln -s ${cef}/cmake cef/dist/cmake
|
||||||
|
ln -s ${cef}/CMakeLists.txt cef/dist
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
makeWrapper "$out/opt/bolt-launcher/bolt" "$out/bin/${finalAttrs.pname}-${finalAttrs.version}" \
|
||||||
|
--set JAVA_HOME "${jdk17}"
|
||||||
|
ls -al $out/bin
|
||||||
|
mkdir -p $out/lib
|
||||||
|
cp $out/usr/local/lib/libbolt-plugin.so $out/lib
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
in
|
||||||
|
buildFHSEnv {
|
||||||
|
inherit (bolt) name version;
|
||||||
|
|
||||||
|
targetPkgs = pkgs:
|
||||||
|
[bolt]
|
||||||
|
++ (with pkgs; [
|
||||||
|
xorg.libSM
|
||||||
|
xorg.libXxf86vm
|
||||||
|
xorg.libX11
|
||||||
|
glib
|
||||||
|
pango
|
||||||
|
cairo
|
||||||
|
gdk-pixbuf
|
||||||
|
gtk2-x11
|
||||||
|
libz
|
||||||
|
libcap
|
||||||
|
libsecret
|
||||||
|
openssl_1_1
|
||||||
|
SDL2
|
||||||
|
libGL
|
||||||
|
]);
|
||||||
|
|
||||||
|
runScript = "${bolt.name}";
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/Adamcake/Bolt";
|
||||||
|
description = "An alternative launcher for RuneScape";
|
||||||
|
license = lib.licenses.agpl3Plus;
|
||||||
|
maintainers = with lib.maintainers; [nezia];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
mainProgram = "${bolt.name}";
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,3 +1,4 @@
|
||||||
pkgs: {
|
pkgs: {
|
||||||
mcuxpresso = import ./mcuxpresso pkgs;
|
mcuxpresso = import ./mcuxpresso pkgs;
|
||||||
|
bolt-launcher = pkgs.callPackage ./bolt-launcher.nix {};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
_: {
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
overlays = [
|
overlays = [
|
||||||
(_: prev: {
|
(_: prev: {
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
permittedInsecurePackages = ["cinny-4.2.2" "cinny-unwrapped-4.2.2" "segger-jlink-qt4-796s"];
|
permittedInsecurePackages = ["cinny-4.2.2" "cinny-unwrapped-4.2.2" "segger-jlink-qt4-796s" "openssl-1.1.1w"];
|
||||||
segger-jlink.acceptLicense = true;
|
segger-jlink.acceptLicense = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue