diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·15+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-09T01·15+0000 |
commit | 3940b2e1a80ce0c01e6a2f4016e5ebe2abcc7289 (patch) | |
tree | 6a18a8acd6183b59759dfeba5b8c40a8ffdb9529 /third_party | |
parent | 815574ad5f0e19939a0afc403b222145d5b01b67 (diff) |
feat(third_party/lisp): Add derivation for flexi-streams r/361
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/lisp/flexi-streams.nix | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/third_party/lisp/flexi-streams.nix b/third_party/lisp/flexi-streams.nix new file mode 100644 index 000000000000..56a7f7b92e0e --- /dev/null +++ b/third_party/lisp/flexi-streams.nix @@ -0,0 +1,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" + ]; +} + |