shells/hugo: update inputs

This commit is contained in:
Gabriel Arazas 2023-09-27 10:50:58 +08:00
parent 1abb1ae9a6
commit d34ad34387
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,5 +1,11 @@
# My usual toolchain for developing Hugo projects.
{ mkShell, hugo, git, go, nodejs_latest }:
{ mkShell
, hugo
, git
, go
, nodejs_latest
, imagemagick
}:
mkShell {
packages = [
@ -7,5 +13,6 @@ mkShell {
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.
];
}