tvl-depot/third_party/lisp/trivial-garbage.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
285 B
Nix
Raw Normal View History

# 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") ];
}