about summary refs log tree commit diff
path: root/third_party/lisp/trivial-features.nix
blob: c0ff0d2e2030395f4106aff4607c4a3b2ab6f7ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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")
  ];
}