forked from Fediversity/Fediversity
16 lines
337 B
Nix
16 lines
337 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
sources ? import ../npins,
|
|
pkgs ? import sources.nixpkgs { inherit system; },
|
|
}:
|
|
{
|
|
tests = import ./check { inherit pkgs; };
|
|
|
|
# re-export inputs so they can be overridden granularly
|
|
# (they can't be accessed from the outside any other way)
|
|
inherit
|
|
sources
|
|
system
|
|
pkgs
|
|
;
|
|
}
|