ci/github-script: add gh dependency to dev shell

This commit is contained in:
Wolfgang Walther
2025-07-14 10:34:25 +02:00
parent d71b8c3680
commit cdd1931ace
2 changed files with 4 additions and 2 deletions

View File

@@ -5,12 +5,14 @@
pkgs.callPackage (
{
mkShell,
gh,
importNpmLock,
mkShell,
nodejs,
}:
mkShell {
packages = [
gh
importNpmLock.hooks.linkNodeModulesHook
nodejs
];