hakyll-skeleton/shell.nix

12 lines
216 B
Nix
Raw Normal View History

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