lib.buildClan: fix flake reference
All checks were successful
checks-impure / test (pull_request) Successful in 2s
checks / test (pull_request) Successful in 2s

This commit is contained in:
Jörg Thalheim 2023-08-29 22:27:13 +02:00
parent d88c628f57
commit 7c21453b17

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