2020-01-09 02:08:36 +01:00
|
|
|
# trivial-garbage provides a portable API to finalizers, weak
|
|
|
|
# hash-tables and weak pointers
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-09 02:08:36 +01:00
|
|
|
|
|
|
|
let src = builtins.fetchGit {
|
|
|
|
url = "https://github.com/trivial-garbage/trivial-garbage.git";
|
|
|
|
rev = "dbc8e35acb0176b9a14fdc1027f5ebea93435a84";
|
|
|
|
};
|
2020-02-21 13:47:29 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-09 02:08:36 +01:00
|
|
|
name = "trivial-garbage";
|
|
|
|
srcs = [ (src + "/trivial-garbage.lisp") ];
|
|
|
|
}
|