hakyll-skeleton/shell.nix
2024-01-09 16:06:48 +10:00

12 lines
216 B
Nix

{
pkgs ? import <nixpkgs> {},
mkShell,
}:
with pkgs;
mkShell {
buildInputs = [
nix # Powerful package manager, makes packaging reliable & reproducible
tea # Gitea official CLI client
];
}