5550180e7e
Specifically fixes some features missing with ECL. Change-Id: Ib04a0dc3a6e299b07d405fab7b593d2c1cbda896 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3345 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: grfn <grfn@gws.fyi>
12 lines
295 B
Nix
12 lines
295 B
Nix
{ depot, ... }:
|
|
|
|
let src = builtins.fetchGit {
|
|
url = "https://github.com/trivial-features/trivial-features.git";
|
|
rev = "f6e8dd7268ae0137dbde4be469101a7f735f6416"; # 2021-02-28
|
|
};
|
|
in depot.nix.buildLisp.library {
|
|
name = "trivial-features";
|
|
srcs = [
|
|
(src + "/src/tf-sbcl.lisp")
|
|
];
|
|
}
|