mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
17 lines
386 B
Nix
17 lines
386 B
Nix
|
{
|
||
|
makeNixvim,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
}: let
|
||
|
fetchTests = import ./fetch-tests.nix;
|
||
|
mkTestDerivation = import ./test-derivation.nix {inherit pkgs makeNixvim;};
|
||
|
|
||
|
# List of files containing configurations
|
||
|
testFiles = fetchTests {
|
||
|
inherit lib pkgs;
|
||
|
root = ./test-sources;
|
||
|
};
|
||
|
in
|
||
|
# We attempt to build & execute all configurations
|
||
|
builtins.mapAttrs mkTestDerivation testFiles
|