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.cl-who;
in depot.nix.buildLisp.library {
name = "cl-who";
srcs = map (f: src + ("/" + f)) [
"packages.lisp"
"specials.lisp"
"util.lisp"
"who.lisp"
];
}