feat: initial Elsword-GE builder
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user