mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
6 lines
184 B
Nix
6 lines
184 B
Nix
|
f: { system ? builtins.currentSystem, ... } @ args:
|
||
|
|
||
|
with import ../lib/testing.nix { inherit system; };
|
||
|
|
||
|
makeTest (if builtins.isFunction f then f (args // { inherit pkgs; }) else f)
|