about summary refs log tree commit diff
path: root/third_party/lisp/trivial-gray-streams.nix
blob: 62a30f1e94f3e62daf6bac9ba536fb52ff282d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Portability library for CL gray streams.
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.trivial-gray-streams;
in depot.nix.buildLisp.library {
  name = "trivial-gray-streams";
  srcs = [
    (src + "/package.lisp")
    (src + "/streams.lisp")
  ];
}