about summary refs log tree commit diff
path: root/third_party/lisp/trivial-garbage.nix
blob: 74224df60d9103a8e43f2058768907315b896af1 (plain) (blame)
1
2
3
4
5
6
7
8
9
# trivial-garbage provides a portable API to finalizers, weak
# hash-tables and weak pointers
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.trivial-garbage;
in depot.nix.buildLisp.library {
  name = "trivial-garbage";
  srcs = [ (src + "/trivial-garbage.lisp") ];
}