2020-07-27 01:55:08 +02:00
|
|
|
{ depot, pkgs, ... }:
|
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.marshal;
|
2020-07-27 01:55:08 +02:00
|
|
|
in depot.nix.buildLisp.library {
|
|
|
|
name = "marshal";
|
|
|
|
srcs = map (f: src + ("/" + f)) [
|
|
|
|
"package.lisp"
|
|
|
|
"serialization-format.lisp"
|
|
|
|
"coding-idiom.lisp"
|
|
|
|
"marshal.lisp"
|
|
|
|
"unmarshal.lisp"
|
|
|
|
];
|
|
|
|
}
|