Files
LCE-Qt-Launcher/flake.nix
xgui4 cfa861b357 Added Nix, flake , better readme, and docs
update readme and divised them in mutliple files in a news directory names `docs`  with two folder for localized versions, added nix flake and removed obseleted scripts
2026-05-17 13:57:29 -04:00

22 lines
657 B
Nix

{
description = "A Custom Minecraft Legacy Console Launcher written in Python with Free Software 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; };
}
);
}