blob: a6a06d4ad0578e237186bd93b5866b0dbb14ab54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Flexible bivalent streams for Common Lisp
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.flexi-streams;
in depot.nix.buildLisp.library {
name = "flexi-streams";
deps = [ depot.third_party.lisp.trivial-gray-streams ];
srcs = map (f: src + ("/" + f)) [
"packages.lisp"
"mapping.lisp"
"ascii.lisp"
"koi8-r.lisp"
"mac.lisp"
"iso-8859.lisp"
"enc-cn-tbl.lisp"
"code-pages.lisp"
"specials.lisp"
"util.lisp"
"conditions.lisp"
"external-format.lisp"
"length.lisp"
"encode.lisp"
"decode.lisp"
"in-memory.lisp"
"stream.lisp"
"output.lisp"
"input.lisp"
"io.lisp"
"strings.lisp"
];
}
|