5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
19 lines
319 B
Nix
19 lines
319 B
Nix
# Run:
|
|
# nix-build -A nixosTests.nix-channel
|
|
{ lib, testers }:
|
|
let
|
|
inherit (lib) fileset;
|
|
|
|
runShellcheck = testers.shellcheck {
|
|
src = fileset.toSource {
|
|
root = ./.;
|
|
fileset = fileset.unions [
|
|
./activation-check.sh
|
|
];
|
|
};
|
|
};
|
|
|
|
in
|
|
lib.recurseIntoAttrs {
|
|
inherit runShellcheck;
|
|
}
|