Merge pull request 'lib.buildClan: fix flake reference' (#211) from Mic92-main into main

This commit is contained in:
clan-bot
2023-08-29 20:27:41 +00:00

View File

@@ -1,4 +1,5 @@
{ lib { lib
, self
, inputs , inputs
, ... , ...
}: { }: {
@@ -6,7 +7,8 @@
./jsonschema/flake-module.nix ./jsonschema/flake-module.nix
]; ];
flake.lib = import ./default.nix { flake.lib = import ./default.nix {
clan = self;
inherit lib; inherit lib;
inherit (inputs) clan nixpkgs; inherit (inputs) nixpkgs;
}; };
} }