nixos-config/packages/lisp/default.nix

15 lines
444 B
Nix

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