pass args

This commit is contained in:
Niten 2020-11-23 15:21:32 -08:00
parent 184e5a3fe0
commit d219e3e6dc
1 changed files with 4 additions and 2 deletions

View File

@ -2,9 +2,11 @@
with lib;
rec {
cl-sasl = import ./cl-sasl.nix {};
cl-sasl = import ./cl-sasl.nix {
inherit pkgs lib buildLisp;
};
cl-xmpp = import ./cl-xmpp.nix {
cl-sasl = cl-sasl;
inherit pkgs lib buildLisp cl-sasl;
};
# backplane-server = import backplane-server.nix {};
}