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.trivial-features;
in depot.nix.buildLisp.library {
name = "trivial-features";
srcs = [
{
sbcl = src + "/src/tf-sbcl.lisp";
ecl = src + "/src/tf-ecl.lisp";
ccl = src + "/src/tf-openmcl.lisp";
}
];