blob: 74224df60d9103a8e43f2058768907315b896af1 (
plain) (
tree)
|
|
# 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") ];
}
|