mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-15 22:02:26 +00:00
22 lines
687 B
Nix
22 lines
687 B
Nix
{
|
|
description = "A custom Minecraft LCE Launcher written with PySide6 (Qt6 for Python) with Freedom and with GNU/Linux support in mind.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
# Wraps your existing package definition
|
|
packages.default = import ./default.nix { inherit pkgs; };
|
|
|
|
# Wraps your existing dev shell environment
|
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
|
}
|
|
);
|
|
} |