mirror of
https://github.com/h7x4/nix-attr-search.git
synced 2024-12-26 13:47:30 +01:00
13 lines
329 B
Nix
13 lines
329 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 { };
|
||
|
in ''
|
||
|
alias nasf=${format}/bin/nix-attrs-search-format
|
||
|
alias nashl=${hlint}/bin/nix-attrs-search-hlint
|
||
|
'';
|
||
|
}
|