Modpack/nix-modpack/flake.nix

19 lines
311 B
Nix
Raw Normal View History

2025-05-18 03:55:41 +02:00
{
description = "Create nix derivations from a packwiz modpack";
inputs = {
nix-minecraft.url = "github:Jan-Bulthuis/nix-minecraft";
};
outputs =
{ nix-minecraft, ... }:
let
lib = import ./lib {
inherit nix-minecraft;
};
in
{
__functor = _: lib;
};
}