mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 04:58:26 +00:00
27 lines
294 B
Nix
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
|
|
'';
|
|
}
|