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,15 +1,17 @@
# Common Lisp library for decompressing deflate, zlib, gzip, and bzip2 data
{ pkgs, ... }:
with pkgs.nix;
let src = pkgs.third_party.fetchFromGitHub {
owner = "froydnj";
repo = "chipz";
rev = "75dfbc660a5a28161c57f115adf74c8a926bfc4d";
sha256 = "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg";
};
in pkgs.nix.buildLisp.library {
in buildLisp.library {
name = "chipz";
deps = with pkgs.third_party.lisp; [ asdf ];
deps = [ (buildLisp.bundled "asdf") ];
srcs = map (f: src + ("/" + f)) [
"chipz.asd"