all repos — x @ ddadac45203f8aa48b05e9944cc5dcddb8829f62

Experiments and stuff

initial commit

Alan Pearce
commit

ddadac45203f8aa48b05e9944cc5dcddb8829f62

1 file changed, 22 insertions(+), 0 deletions(-)

changed files
A shell.nix
@@ -0,0 +1,22 @@
+{ pkgs ? ( + let + sources = import ./npins; + in + import sources.nixpkgs { } + ) +}: +let + inherit (import ./.) pre-commit-check; +in +pkgs.mkShell { + inherit (pre-commit-check) shellHook; + packages = with pkgs; [ + go + npins + gopls + go-licenses + gotools + templ + just + ]; +}