Added Lisp stuff

This commit is contained in:
nostoromo root
2020-11-24 12:01:03 -08:00
parent c715720ea5
commit 96da822c5a
8 changed files with 174 additions and 0 deletions
+14
View File
@@ -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; };
}