mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 10:10:06 +01:00
12 lines
421 B
Nix
12 lines
421 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
cilib,
|
|
}: rec {
|
|
helpers = import ./helpers.nix {inherit lib pkgs;};
|
|
mkJobDeps = import ./jobDeps.nix {inherit lib helpers;};
|
|
mkJobRun = import ./jobRun.nix {inherit lib pkgs helpers;};
|
|
mkJobPatched = import ./jobPatched.nix {inherit lib helpers;};
|
|
mkPipeline = import ./pipeline.nix {inherit lib helpers mkJobDeps mkJobRun mkJobPatched;};
|
|
modules = import ./modules {inherit lib cilib;};
|
|
}
|