Added Lisp stuff
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
rec {
|
||||
arrows = import ./arrows.nix { inherit pkgs; };
|
||||
cl-sasl = import ./cl-sasl.nix { inherit pkgs; };
|
||||
cl-xmpp = import ./cl-xmpp.nix { inherit pkgs cl-sasl; };
|
||||
backplane-dns = import ./backplane-dns.nix {
|
||||
inherit pkgs arrows backplane-server ip-utils;
|
||||
};
|
||||
backplane-server = import ./backplane-server.nix {
|
||||
inherit pkgs lib arrows cl-xmpp;
|
||||
};
|
||||
ip-utils = import ./ip-utils.nix { inherit pkgs; };
|
||||
}
|
||||
Reference in New Issue
Block a user