18 lines
278 B
Nix
18 lines
278 B
Nix
{ ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, self', ... }:
|
|
{
|
|
checks =
|
|
let
|
|
checkArgs = {
|
|
inherit pkgs;
|
|
self = self';
|
|
};
|
|
in
|
|
{
|
|
think-gtcm = import ./tests/think-gtcm.nix checkArgs;
|
|
};
|
|
};
|
|
}
|