Initial attempt at a lisp library repo for fudo
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user