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