29 lines
675 B
Nix
29 lines
675 B
Nix
![]() |
{ pkgs, backplane-server, arrows, ip-utils, ... }:
|
||
|
|
||
|
pkgs.lispPackages.buildLispPackage {
|
||
|
baseName = "backplane-dns";
|
||
|
packageName = "backplane-dns";
|
||
|
description = "XMPP Backplane DNS Server";
|
||
|
|
||
|
buildSystems = [ "backplane-dns" ];
|
||
|
|
||
|
deps = with pkgs.lispPackages; [
|
||
|
arrows
|
||
|
alexandria
|
||
|
backplane-server
|
||
|
cl-ppcre
|
||
|
ip-utils
|
||
|
postmodern
|
||
|
trivia
|
||
|
];
|
||
|
|
||
|
src = pkgs.fetchgit {
|
||
|
url = "https://git.fudo.org/fudo-public/backplane-dns.git";
|
||
|
rev = "d9e13bae165b08976fd025053bb2dde44bb4278d";
|
||
|
sha256 = "0b4y75hq5753v8pk47c4pwpyc95igpjl7md7f29jjvqaviys66xh";
|
||
|
fetchSubmodules = false;
|
||
|
};
|
||
|
|
||
|
asdFilesToKeep = [ "backplane-dns.asd" ];
|
||
|
}
|