mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
tests: call using callPackages
This commit is contained in:
parent
452c30f747
commit
8eeea073fc
2 changed files with 2 additions and 7 deletions
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
self,
|
self,
|
||||||
lib,
|
|
||||||
helpers,
|
helpers,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
@ -9,18 +8,14 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
pkgsUnfree,
|
pkgsUnfree,
|
||||||
system,
|
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
checks = import ../tests {
|
checks = pkgs.callPackages ../tests {
|
||||||
inherit
|
inherit
|
||||||
helpers
|
helpers
|
||||||
lib
|
|
||||||
pkgs
|
|
||||||
pkgsUnfree
|
pkgsUnfree
|
||||||
self
|
self
|
||||||
system
|
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
pkgsUnfree,
|
pkgsUnfree,
|
||||||
helpers,
|
helpers,
|
||||||
lib,
|
lib,
|
||||||
system,
|
|
||||||
self, # The flake instance
|
self, # The flake instance
|
||||||
|
system ? pkgs.stdenv.hostPlatform.system,
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
autoArgs = pkgs // {
|
autoArgs = pkgs // {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue