From 7c21453b17d8f62c45cd1c89d4eec5affd55d8f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 29 Aug 2023 22:27:13 +0200 Subject: [PATCH] lib.buildClan: fix flake reference --- lib/flake-module.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/flake-module.nix b/lib/flake-module.nix index 48c682e2..517e96d4 100644 --- a/lib/flake-module.nix +++ b/lib/flake-module.nix @@ -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; }; }