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:
parent
ca60eafa80
commit
a41b8c70a6
14 changed files with 36 additions and 74 deletions
5
third_party/lisp/cl-json.nix
vendored
5
third_party/lisp/cl-json.nix
vendored
|
|
@ -1,15 +1,16 @@
|
|||
# JSON encoder & decoder
|
||||
{ pkgs, ... }:
|
||||
|
||||
with pkgs.nix;
|
||||
let src = pkgs.third_party.fetchFromGitHub {
|
||||
owner = "hankhero";
|
||||
repo = "cl-json";
|
||||
rev = "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79";
|
||||
sha256 = "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
in buildLisp.library {
|
||||
name = "cl-json";
|
||||
deps = [ pkgs.third_party.lisp.asdf ];
|
||||
deps = [ (buildLisp.bundled "asdf") ];
|
||||
|
||||
srcs = [ "${src}/cl-json.asd" ] ++
|
||||
(map (f: src + ("/src/" + f)) [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue