about summary refs log tree commit diff stats
path: root/shell.nix
blob: 118b942e58c7b0b1c2d6c9e63c446ff86fc42f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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
    hyperlink
    systemfd
    just
    modd

    ko
    flyctl
  ];
}