Files
mc-pack-2025-03/flake.nix
bluepython508 fbefeb0894 DevShell
2025-04-11 16:16:12 +01:00

21 lines
375 B
Nix

{
outputs = {
self,
nixpkgs,
systems,
}: let
eachSystem = f:
nixpkgs.lib.genAttrs (import systems) (system:
f {
inherit system;
pkgs = nixpkgs.legacyPackages.${system};
});
in {
devShells = eachSystem ({pkgs, ...}: {
default = pkgs.mkShell {
packages = [pkgs.packwiz];
};
});
};
}