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
+20
View File
@@ -0,0 +1,20 @@
{ pkgs, lib, fudoLispPackages, ... }
let
cl-sasl-path = lib.fetchgit {
url = "https://github.com/legoscia/cl-sasl.git";
rev = "64f195c0756cb80fa5961c072b62907be20a7380";
sha256 = "0a05q8rls2hn46rbbk6w5km9kqvhsj365zlw6hp32724xy2nd98w";
fetchSubmodules = false;
};
in lib.buildLisp.library {
name = "cl-sasl";
srcs = [
"${cl-sasl-path}/packages.lisp"
"${cl-sasl-path}/util.lisp"
"${cl-sasl-path}/client.lisp"
"${cl-sasl-path}/plain.lisp"
"${cl-sasl-path}/digest-md5.lisp"
];
}