website/shell.nix
2022-11-22 23:18:42 +08:00

27 lines
294 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
packages = [
curl
cacert
asciidoctor
entr
git
go
hugo
jq
openring
gnumake
];
shellHook = ''
go version
hugo version
asciidoctor --version
chmod u+x --recursive ./bin
'';
}