28 lines
628 B
Nix
28 lines
628 B
Nix
{
|
|
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
|
|
];
|
|
};
|
|
};
|
|
}
|