From e8d0488367547e960f210b8443e924b56e4dc743 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 9 Jan 2020 00:59:45 +0000 Subject: feat(third_party/lisp): Add dummy packages for ASDF & UIOP These both ship with SBCL, but need to be forced to load. --- third_party/lisp/uiop.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 third_party/lisp/uiop.nix (limited to 'third_party/lisp/uiop.nix') diff --git a/third_party/lisp/uiop.nix b/third_party/lisp/uiop.nix new file mode 100644 index 000000000000..1a63041be676 --- /dev/null +++ b/third_party/lisp/uiop.nix @@ -0,0 +1,10 @@ +# UIOP ships with SBCL (due to ASDF). This package just exists to +# force it to load. +{ pkgs, ... }: + +with pkgs; + +nix.buildLisp.library { + name = "uiop"; + srcs = lib.singleton (builtins.toFile "uiop.lisp" "(require 'uiop)"); +} -- cgit 1.4.1