tests: call using callPackages

This commit is contained in:
Matt Sturgeon 2024-12-14 22:41:16 +00:00
parent 452c30f747
commit 8eeea073fc
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299
2 changed files with 2 additions and 7 deletions

View file

@ -1,6 +1,5 @@
{
self,
lib,
helpers,
...
}:
@ -9,18 +8,14 @@
{
pkgs,
pkgsUnfree,
system,
...
}:
{
checks = import ../tests {
checks = pkgs.callPackages ../tests {
inherit
helpers
lib
pkgs
pkgsUnfree
self
system
;
};
};

View file

@ -3,8 +3,8 @@
pkgsUnfree,
helpers,
lib,
system,
self, # The flake instance
system ? pkgs.stdenv.hostPlatform.system,
}:
let
autoArgs = pkgs // {