Add Nix code (not complete)

This commit is contained in:
2023-02-06 15:18:31 -08:00
parent b77d6a294a
commit 8b4b1cead6
3 changed files with 179 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{ 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" ];
}