diff options
author | Vincent Ambo <Vincent Ambo> | 2020-01-09T00·17+0000 |
---|---|---|
committer | Vincent Ambo <Vincent Ambo> | 2020-01-09T00·17+0000 |
commit | 06362a812ecec867b88c59e8565da1b43a39adb0 (patch) | |
tree | 0ce2edfcf25a86472f36e23749295df0f707be76 | |
parent | 07ee2569328fe89090624c066c0547485d3a417d (diff) |
feat(third_party/lisp): Add derivation for trivial-features r/354
-rw-r--r-- | third_party/lisp/trivial-features.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/lisp/trivial-features.nix b/third_party/lisp/trivial-features.nix new file mode 100644 index 000000000000..c0ff0d2e2030 --- /dev/null +++ b/third_party/lisp/trivial-features.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: + +let src = builtins.fetchGit { + url = "https://github.com/trivial-features/trivial-features.git"; + rev = "b78b2df5d75bdf8fdfc69f0deec0a187d9664b0b"; +}; +in pkgs.nix.buildLisp.library { + name = "trivial-features"; + srcs = [ + (src + "/src/tf-sbcl.lisp") + ]; +} |