# My usual toolchain for developing Hugo projects.
{ mkShell
, hugo
, git
, go
, nodejs_latest
, imagemagick
}:

mkShell {
  packages = [
    hugo # The main tool.
    go # I might use Go modules which requires the Golang runtime.
    git # VCS of my choice.
    nodejs_latest # The supported NodeJS version.
    imagemagick # Everyman's image processing framework.
  ];
}