blob: b7808a2364aa4f5157e15264e4079772a80e14e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ depot, ... }:
let src = builtins.fetchGit {
url = "https://github.com/trivial-features/trivial-features.git";
rev = "b78b2df5d75bdf8fdfc69f0deec0a187d9664b0b";
};
in depot.nix.buildLisp.library {
name = "trivial-features";
srcs = [
(src + "/src/tf-sbcl.lisp")
];
}
|