tvl-depot/third_party/lisp/asdf.nix
Vincent Ambo e8d0488367 feat(third_party/lisp): Add dummy packages for ASDF & UIOP
These both ship with SBCL, but need to be forced to load.
2020-01-09 00:59:45 +00:00

9 lines
213 B
Nix

# ASDF ships with SBCL. This package just exists to force it to load.
{ pkgs, ... }:
with pkgs;
nix.buildLisp.library {
name = "asdf";
srcs = lib.singleton (builtins.toFile "asdf.lisp" "(require 'asdf)");
}