repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0
[NixPkgs.git]
/
nixos
/
modules
/
config
/
nix-channel
/
test.nix
blob
4b00cf9db3c474835e1604decca4146eb9367c89
1
# Run:
2
# nix-build -A nixosTests.nix-channel
3
{ lib, testers }:
4
let
5
inherit (lib) fileset;
6
7
runShellcheck = testers.shellcheck {
8
src = fileset.toSource {
9
root = ./.;
10
fileset = fileset.unions [
11
./activation-check.sh
12
];
13
};
14
};
15
16
in
17
lib.recurseIntoAttrs {
18
inherit runShellcheck;
19
}