2022-01-08 01:33:26 -06:00
|
|
|
{
|
2022-03-13 18:18:46 +02:00
|
|
|
description = "A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once (Fork of MultiMC)";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
2023-05-27 13:45:28 -04:00
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
2023-09-09 15:10:15 -04:00
|
|
|
nix-filter.url = "github:numtide/nix-filter";
|
2023-03-14 10:53:51 +01:00
|
|
|
pre-commit-hooks = {
|
|
|
|
url = "github:cachix/pre-commit-hooks.nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2023-05-27 13:45:28 -04:00
|
|
|
inputs.nixpkgs-stable.follows = "nixpkgs";
|
|
|
|
inputs.flake-compat.follows = "flake-compat";
|
2023-03-14 10:53:51 +01:00
|
|
|
};
|
2023-03-14 10:48:19 +01:00
|
|
|
flake-compat = {
|
|
|
|
url = "github:edolstra/flake-compat";
|
|
|
|
flake = false;
|
|
|
|
};
|
|
|
|
libnbtplusplus = {
|
|
|
|
url = "github:PrismLauncher/libnbtplusplus";
|
|
|
|
flake = false;
|
|
|
|
};
|
2022-01-08 22:15:19 +03:00
|
|
|
};
|
2022-01-08 01:33:26 -06:00
|
|
|
|
2023-09-09 14:34:38 -04:00
|
|
|
outputs = {
|
|
|
|
flake-parts,
|
|
|
|
pre-commit-hooks,
|
|
|
|
...
|
|
|
|
} @ inputs:
|
|
|
|
flake-parts.lib.mkFlake {inherit inputs;} {
|
2023-08-28 10:26:03 +02:00
|
|
|
imports = [
|
2023-09-09 14:34:38 -04:00
|
|
|
pre-commit-hooks.flakeModule
|
2023-09-04 08:52:56 +02:00
|
|
|
|
2023-08-28 10:26:03 +02:00
|
|
|
./nix/dev.nix
|
|
|
|
./nix/distribution.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
systems = [
|
|
|
|
"x86_64-linux"
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-darwin"
|
|
|
|
];
|
|
|
|
};
|
2022-01-08 09:12:44 -06:00
|
|
|
}
|