blob: 02abac54a8533cad596c1a190606e61064c85759 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ 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";
}
];
}
|