diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-26T23·59+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-26T23·59+0000 |
commit | a41b8c70a68b3b6d848d708cd8058866b23847e6 (patch) | |
tree | 18cf49e0e1adce9c780e45909c7e14de4063b27a /third_party/lisp/asdf.nix | |
parent | ca60eafa808e2423fd64996b4f678b08ed3277a5 (diff) |
refactor(third_party/lisp): Use buildLisp.bundled for built-in libs r/462
Deprecates derivations for: * sb-bsd-sockets * sb-posix * sb-rotate-byte * uiop
Diffstat (limited to 'third_party/lisp/asdf.nix')
-rw-r--r-- | third_party/lisp/asdf.nix | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/third_party/lisp/asdf.nix b/third_party/lisp/asdf.nix deleted file mode 100644 index 3d41a1f36def..000000000000 --- a/third_party/lisp/asdf.nix +++ /dev/null @@ -1,9 +0,0 @@ -# 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)"); -} |