Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
{ 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"
];
}