Files
prismlauncher-crack/nix/dev.nix
2024-08-21 03:49:36 -04:00

16 lines
293 B
Nix

{
perSystem =
{ pkgs, self', ... }:
{
devShells.default = pkgs.mkShell {
inputsFrom = [ self'.packages.prismlauncher-unwrapped ];
buildInputs = with pkgs; [
ccache
ninja
];
};
formatter = pkgs.nixfmt-rfc-style;
};
}