refactor(third_party/lisp): Use buildLisp.bundled for built-in libs

Deprecates derivations for:

* sb-bsd-sockets
* sb-posix
* sb-rotate-byte
* uiop
This commit is contained in:
Vincent Ambo 2020-01-26 23:59:07 +00:00
parent ca60eafa80
commit a41b8c70a6
14 changed files with 36 additions and 74 deletions

View file

@ -1,9 +1,10 @@
# Imported from https://github.com/didierverna/asdf-flv
{ pkgs, ... }:
pkgs.nix.buildLisp.library {
with pkgs.nix;
buildLisp.library {
name = "asdf-flv";
deps = with pkgs.third_party.lisp; [ asdf ];
deps = [ (buildLisp.bundled "asdf") ];
srcs = [
./package.lisp