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
, self
, inputs
, ...
}: {
@@ -6,7 +7,8 @@
./jsonschema/flake-module.nix
];
flake.lib = import ./default.nix {
clan = self;
inherit lib;
inherit (inputs) clan nixpkgs;
inherit (inputs) nixpkgs;
};
}