blob: 70a6e19d48a9b0f79325fbb794145eba5cc04e26 (
plain) (
tree)
|
|
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.trivial-indent;
in depot.nix.buildLisp.library {
name = "trivial-indent";
srcs = map (f: src + ("/" + f)) [
"indent.lisp"
];
}
|