2020-01-21 03:06:11 +01:00
|
|
|
# Portable chunked streams for Common Lisp
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.chunga;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-21 03:06:11 +01:00
|
|
|
name = "chunga";
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party.lisp; [
|
2020-01-21 03:06:11 +01:00
|
|
|
trivial-gray-streams
|
|
|
|
];
|
|
|
|
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"packages.lisp"
|
|
|
|
"specials.lisp"
|
|
|
|
"util.lisp"
|
|
|
|
"known-words.lisp"
|
|
|
|
"conditions.lisp"
|
|
|
|
"read.lisp"
|
|
|
|
"streams.lisp"
|
|
|
|
"input.lisp"
|
|
|
|
"output.lisp"
|
|
|
|
];
|
|
|
|
}
|