Initial attempt at a lisp library repo for fudo

This commit is contained in:
2020-11-23 14:02:36 -08:00
commit 541b52294c
4 changed files with 109 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{ pkgs, lib, fudoLispPackages, ... }:
let
unstablePkgs = import <nixos-unstable> {};
upstreamPackages = with pkgs.lispPackages; [
alexandria
arrows
cl-json
cl-postgres
cl-ppcre
cl_plus_ssl
unstablePkgs.lispPackages.postmodern
trivia
];
localPackages = with fudoLispPackages; [
cl-xmpp
cl-xmpp-tls
];
in lib.buildLisp.library {
name = "backplane-server";
srcs = "./backplane-server.lisp";
deps = upstreamPackages ++ localPackages;
}