blob: 1945d8a2e9c7c12dcfdca9a44a82f5a497901300 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Common Lisp bindings to OpenSSL
{ pkgs, ... }:
let src = builtins.fetchGit {
url = "https://github.com/cl-plus-ssl/cl-plus-ssl.git";
rev = "29081992f6d7b4e3aa2c5eeece4cd92b745071f4";
};
in pkgs.nix.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
];
native = [ pkgs.third_party.openssl ];
srcs = map (f: src + ("/src/" + f)) [
"package.lisp"
"reload.lisp"
"conditions.lisp"
"ffi.lisp"
"x509.lisp"
"ffi-buffer-all.lisp"
"ffi-buffer.lisp"
"streams.lisp"
"bio.lisp"
"random.lisp"
"context.lisp"
"verify-hostname.lisp"
];
}
|