Files
util.nix/template/avarage/devshell/default.nix
2025-10-28 11:41:26 +00:00

14 lines
265 B
Nix

{ pkgs }: let
dev-help = pkgs.writeShellScriptBin "dev-help" /* sh */ ''
printf '%s\n' \
'phph'
'';
in
pkgs.mkShell {
buildInputs = [ dev-help ];
nativeBuildInputs = [ pkgs.pkg-config ];
# environment
PAGER="${pkgs.hectic.nvim-pager}/bin/pager";
}