1
0
Fork 0
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:
Yang, Bo 2023-05-08 19:18:57 -07:00
parent aafcaf1f66
commit a13fbf2b39

View file

@ -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;