mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 07:43:43 +00:00
10 lines
205 B
Nix
10 lines
205 B
Nix
|
{
|
||
|
system ? builtins.currentSystem,
|
||
|
pkgs ? import ../../.. { inherit system; },
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
basic = import ./basic.nix { inherit system pkgs; };
|
||
|
publish = import ./publish.nix { inherit system pkgs; };
|
||
|
}
|