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
8
third_party/lisp/cl-plus-ssl.nix
vendored
8
third_party/lisp/cl-plus-ssl.nix
vendored
|
|
@ -1,22 +1,24 @@
|
|||
# Common Lisp bindings to OpenSSL
|
||||
{ pkgs, ... }:
|
||||
|
||||
with pkgs.nix;
|
||||
|
||||
let src = builtins.fetchGit {
|
||||
url = "https://github.com/cl-plus-ssl/cl-plus-ssl.git";
|
||||
rev = "29081992f6d7b4e3aa2c5eeece4cd92b745071f4";
|
||||
};
|
||||
in pkgs.nix.buildLisp.library {
|
||||
in buildLisp.library {
|
||||
name = "cl-plus-ssl";
|
||||
deps = with pkgs.third_party.lisp; [
|
||||
alexandria
|
||||
bordeaux-threads
|
||||
cffi
|
||||
flexi-streams
|
||||
sb-posix
|
||||
trivial-features
|
||||
trivial-garbage
|
||||
trivial-gray-streams
|
||||
uiop
|
||||
(buildLisp.bundled "uiop")
|
||||
(buildLisp.bundled "sb-posix")
|
||||
];
|
||||
|
||||
native = [ pkgs.third_party.openssl ];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue