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

let src = with pkgs; srcOnly lispPackages.parseq;
in depot.nix.buildLisp.library {
  name = "parseq";

  srcs = map (f: src + ("/" + f)) [
    "package.lisp"
    "conditions.lisp"
    "utils.lisp"
    "defrule.lisp"
  ];
}