clan-cli: Add shellcheck as a runtimeDependencie

This commit is contained in:
Qubasa
2025-04-09 19:37:42 +02:00
parent f4f7df312d
commit f1855f80fc
2 changed files with 3 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
"tor", "tor",
"virtiofsd", "virtiofsd",
"zbar", "zbar",
"shellcheck",
"util-linux", "util-linux",
"avahi", "avahi",
"gnupg" "gnupg"

View File

@@ -16,6 +16,7 @@
classgen, classgen,
pythonRuntime, pythonRuntime,
templateDerivation, templateDerivation,
shellcheck,
}: }:
let let
pyDeps = ps: [ pyDeps = ps: [
@@ -51,6 +52,7 @@ let
testDependencies = testRuntimeDependencies ++ [ testDependencies = testRuntimeDependencies ++ [
gnupg gnupg
stdenv.cc # Compiler used for certain native extensions stdenv.cc # Compiler used for certain native extensions
shellcheck
(pythonRuntime.withPackages pyTestDeps) (pythonRuntime.withPackages pyTestDeps)
]; ];