about summary refs log tree commit diff
path: root/third_party/lisp/marshal.nix
blob: 73a1664a01625b92fb769fa61bdca9fcd71166eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.marshal;
in depot.nix.buildLisp.library {
  name = "marshal";
  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "serialization-format.lisp"
    "coding-idiom.lisp"
    "marshal.lisp"
    "unmarshal.lisp"
  ];
}