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