buildClan: fix missing argument clan

This commit is contained in:
DavHau 2023-09-02 18:24:34 +02:00
parent d30f640321
commit 03808d9fbc
2 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ lib, clan, nixpkgs, ... }: { lib, self, nixpkgs, ... }:
{ {
findNixFiles = folder: findNixFiles = folder:
lib.mapAttrs' lib.mapAttrs'
@ -14,5 +14,5 @@
jsonschema = import ./jsonschema { inherit lib; }; jsonschema = import ./jsonschema { inherit lib; };
buildClan = import ./build-clan { inherit lib clan nixpkgs; }; buildClan = import ./build-clan { inherit lib self nixpkgs; };
} }

View File

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