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