about summary refs log tree commit diff
path: root/third_party/lisp/cl-who.nix
blob: 50e4e68c0348161a7eab54851a2d2b59f7e89b42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ depot, pkgs, ... }:

let

  src = pkgs.fetchFromGitHub {
    owner = "edicl";
    repo = "cl-who";
    rev = "0d3826475133271ee8c590937136c1bc41b8cbe0";
    sha256 = "0sc8nji9q1df04lhsiwsjy1a35996bibl31w5hp5sh8q6sa122dy";
  };

in depot.nix.buildLisp.library {
  name = "cl-who";

  srcs = map (f: src + ("/" + f)) [
    "packages.lisp"
    "specials.lisp"
    "util.lisp"
    "who.lisp"
  ];
}