25 lines
417 B
Nix
25 lines
417 B
Nix
|
{ pkgs, backplane-server, ... }:
|
||
|
|
||
|
pkgs.lispPackages.buildLispPackage {
|
||
|
baseName = "backplane-dns";
|
||
|
description = "Fudo XMPP Backplane DNS Server";
|
||
|
|
||
|
buildSystems = [ "backplane-dns" ];
|
||
|
|
||
|
src = ./.;
|
||
|
|
||
|
deps = with pkgs.lispPackages; [
|
||
|
arrows
|
||
|
alexandria
|
||
|
backplane-server
|
||
|
cl-ppcre
|
||
|
cl_plus_ssl
|
||
|
ip-utils
|
||
|
postmodern
|
||
|
prove
|
||
|
trivia
|
||
|
];
|
||
|
|
||
|
asdFilesToKeep = [ "backplane-dns.asd" ];
|
||
|
}
|