about summary refs log tree commit diff
path: root/third_party/lisp/flexi-streams.nix
blob: 56a7f7b92e0e5f89375e85e69e6a7b69b1deefae (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
34
# Flexible bivalent streams for Common Lisp
{ pkgs, ... }:

let src = builtins.fetchGit {
  url = "https://github.com/edicl/flexi-streams.git";
  rev = "0fd872ae32022e834ef861a67d86879cf33a6b64";
};
in pkgs.nix.buildLisp.library {
  name = "flexi-streams";
  deps = [ pkgs.third_party.lisp.trivial-gray-streams ];

  srcs = map (f: src + ("/" + f)) [
    "packages.lisp"
    "mapping.lisp"
    "ascii.lisp"
    "koi8-r.lisp"
    "iso-8859.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"
 ];
}