about summary refs log tree commit diff
path: root/third_party/lisp/cl-who.nix
blob: 601b09f118db33fbf589459b87fc737ac457f649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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"
  ];
}