2020-01-09 02:15:31 +01:00
|
|
|
# Flexible bivalent streams for Common Lisp
|
2021-12-14 22:32:27 +01:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-09 02:15:31 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.flexi-streams;
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-09 02:15:31 +01:00
|
|
|
name = "flexi-streams";
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = [ depot.third_party.lisp.trivial-gray-streams ];
|
2020-01-09 02:15:31 +01:00
|
|
|
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"packages.lisp"
|
|
|
|
"mapping.lisp"
|
|
|
|
"ascii.lisp"
|
|
|
|
"koi8-r.lisp"
|
2021-12-14 22:32:27 +01:00
|
|
|
"mac.lisp"
|
2020-01-09 02:15:31 +01:00
|
|
|
"iso-8859.lisp"
|
2021-12-14 22:32:27 +01:00
|
|
|
"enc-cn-tbl.lisp"
|
2020-01-09 02:15:31 +01:00
|
|
|
"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"
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|