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,17 +1,19 @@
# Usocket is a portable socket library
{ pkgs, ... }:
with pkgs.nix;
let src = pkgs.third_party.fetchFromGitHub {
owner = "usocket";
repo = "usocket";
rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2";
sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826";
};
in pkgs.nix.buildLisp.library {
in buildLisp.library {
name = "usocket";
deps = with pkgs.third_party.lisp; [
asdf
sb-bsd-sockets
(buildLisp.bundled "asdf")
(buildLisp.bundled "sb-bsd-sockets")
split-sequence
];