mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2024-12-15 17:50:53 +00:00
16 lines
400 B
Nix
16 lines
400 B
Nix
let
|
|
flake = builtins.getFlake (toString ./.);
|
|
fmc-lib = (builtins.getFlake (toString ../.)).lib;
|
|
args = {
|
|
inherit self;
|
|
} // flake.inputs;
|
|
self = {
|
|
inherit (flake) inputs;
|
|
outPath = ../.; # used by pre-commit module, etc
|
|
outputs = self.config.flake;
|
|
} //
|
|
fmc-lib.mkFlake
|
|
{ inputs = args; }
|
|
./flake-module.nix;
|
|
in
|
|
self.config.flake // { inherit (flake) inputs; }
|