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
7
third_party/lisp/cffi.nix
vendored
7
third_party/lisp/cffi.nix
vendored
|
|
@ -1,18 +1,19 @@
|
|||
# CFFI purports to be the Common Foreign Function Interface.
|
||||
{ pkgs, ... }:
|
||||
|
||||
with pkgs.nix;
|
||||
let src = builtins.fetchGit {
|
||||
url = "https://github.com/cffi/cffi.git";
|
||||
rev = "5e838bf46d0089c43ebd3ea014a207c403e29c61";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
in buildLisp.library {
|
||||
name = "cffi";
|
||||
deps = with pkgs.third_party.lisp; [
|
||||
alexandria
|
||||
asdf
|
||||
babel
|
||||
trivial-features
|
||||
uiop
|
||||
(buildLisp.bundled "asdf")
|
||||
(buildLisp.bundled "uiop")
|
||||
];
|
||||
|
||||
srcs = map (f: src + ("/src/" + f)) [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue