15 lines
434 B
Nix
15 lines
434 B
Nix
{ pkgs }:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [ nixfmt hlint jq bat gomplate ];
|
|
|
|
shellHook = let
|
|
format = pkgs.callPackage ./utils/format.nix { };
|
|
hlint = pkgs.callPackage ./utils/hlint.nix { };
|
|
ormolu = pkgs.callPackage ./utils/ormolu.nix { };
|
|
in ''
|
|
alias nasf=${format}/bin/nix-attr-search-format
|
|
alias nashl=${hlint}/bin/nix-attr-search-hlint
|
|
alias nashf=${ormolu}/bin/nix-attr-search-ormolu
|
|
'';
|
|
}
|