website/shell.nix

25 lines
261 B
Nix
Raw Normal View History

2022-03-01 10:00:18 +00:00
{ pkgs ? import <nixpkgs> { } }:
2020-11-07 17:39:05 +00:00
with pkgs;
mkShell {
2022-03-01 10:00:18 +00:00
packages = [
curl
cacert
2020-11-07 17:39:05 +00:00
asciidoctor
entr
2020-11-07 17:39:05 +00:00
git
go
hugo
jq
openring
2022-03-01 10:00:18 +00:00
gnumake
2020-11-07 17:39:05 +00:00
];
shellHook = ''
go version
hugo version
2022-03-01 10:00:18 +00:00
asciidoctor --version
2020-11-07 17:39:05 +00:00
'';
}