feat(third_party/lisp): Add derivation for flexi-streams
This commit is contained in:
parent
815574ad5f
commit
3940b2e1a8
1 changed files with 34 additions and 0 deletions
34
third_party/lisp/flexi-streams.nix
vendored
Normal file
34
third_party/lisp/flexi-streams.nix
vendored
Normal file
|
@ -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"
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in a new issue