mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-03-31 04:04:55 +00:00
Create a more sophisticated lazy self
This commit is contained in:
parent
aafcaf1f66
commit
a13fbf2b39
1 changed files with 7 additions and 2 deletions
|
@ -5,12 +5,17 @@
|
|||
nixpkgs_22_11.url = "github:NixOS/nixpkgs/nixos-22.11";
|
||||
};
|
||||
|
||||
outputs = { flake-parts, ... }@inputs:
|
||||
outputs = { flake-parts, self, ... }@inputs:
|
||||
flake-parts.lib.mkFlake { inherit inputs; } (
|
||||
flake-parts.lib.mkFlake
|
||||
{
|
||||
inherit inputs;
|
||||
# Workaround for https://github.com/hercules-ci/flake-parts/issues/148
|
||||
inputs = inputs // { self.outPath = ./.; };
|
||||
self = {
|
||||
outPath = ./.;
|
||||
inherit (self)
|
||||
_type inputs lastModified lastModifiedDate narHash outputs sourceInfo submodules;
|
||||
};
|
||||
}
|
||||
./modules/dogfood.nix
|
||||
).flakeModules.dogfood;
|
||||
|
|
Loading…
Add table
Reference in a new issue