Initial checkin

This commit is contained in:
2021-08-30 09:45:43 -07:00
commit 1650f05a8b
37 changed files with 1455 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, lib, arrows, cl-xmpp, ... }:
pkgs.lispPackages.buildLispPackage {
baseName = "backplane-server";
packageName = "backplane-server";
description = "XMPP Backplane Server";
buildSystems = [ "backplane-server" ];
deps = with pkgs.lispPackages; [ alexandria arrows cl-json cl-xmpp prove ];
src = pkgs.fetchgit {
url = "https://git.fudo.org/fudo-public/backplane-server.git";
rev = "5b50dd8badf5b5460e9cc7e76e191d274712a3bd";
sha256 = "18fysksmrbfk131fgazbw1cpaxz47015ashap9y4rswd904dzzss";
fetchSubmodules = false;
};
asdFilesToKeep = [ "backplane-server.asd" ];
}