feat: initial Elsword-GE builder

This commit is contained in:
magges
2026-06-27 10:26:21 +02:00
commit f3817f7c82
6 changed files with 822 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
description = "Build versioned Elsword Proton-GE tools with DXVK and sniper runtime";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
curl
git
glslang
meson
ninja
pkg-config
python3
wineWow64Packages.stable
pkgsCross.mingw32.stdenv.cc
pkgsCross.mingwW64.stdenv.cc
];
};
};
}