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,16 +1,17 @@
# Drakma is an HTTP client for Common Lisp.
{ pkgs, ... }:
with pkgs.nix;
let src = pkgs.third_party.fetchFromGitHub {
owner = "edicl";
repo = "drakma";
rev = "87feb02bef00b11a753d5fb21a5fec526b0d0bbb";
sha256 = "01b80am2vrw94xmdj7f21qm7p5ys08mmpzv4nc4icql81hqr1w2m";
};
in pkgs.nix.buildLisp.library {
in buildLisp.library {
name = "drakma";
deps = with pkgs.third_party.lisp; [
asdf
chipz
chunga
cl-base64
@ -19,6 +20,7 @@ in pkgs.nix.buildLisp.library {
flexi-streams
puri
usocket
(buildLisp.bundled "asdf")
];
srcs = map (f: src + ("/" + f)) [