about summary refs log tree commit diff
path: root/third_party/lisp/sb-bsd-sockets.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-01-26T23·59+0000
committerVincent Ambo <tazjin@google.com>2020-01-26T23·59+0000
commita41b8c70a68b3b6d848d708cd8058866b23847e6 (patch)
tree18cf49e0e1adce9c780e45909c7e14de4063b27a /third_party/lisp/sb-bsd-sockets.nix
parentca60eafa808e2423fd64996b4f678b08ed3277a5 (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/sb-bsd-sockets.nix')
-rw-r--r--third_party/lisp/sb-bsd-sockets.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/third_party/lisp/sb-bsd-sockets.nix b/third_party/lisp/sb-bsd-sockets.nix
deleted file mode 100644
index d311f8590f..0000000000
--- a/third_party/lisp/sb-bsd-sockets.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-# SB-BSD-SOCKETS is an SBCL component. This package just forces it to
-# be loaded.
-{ pkgs, ... }:
-
-with pkgs;
-
-nix.buildLisp.library {
-  name = "sb-bsd-sockets";
-  srcs = lib.singleton (builtins.toFile "sb-bsd-sockets.lisp" "(require 'sb-bsd-sockets)");
-}