blob: 556dee0676c06982791589c82aa116bcada3b596 (
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
|
# CFFI purports to be the Common Foreign Function Interface.
{ pkgs, ... }:
let src = builtins.fetchGit {
url = "https://github.com/cffi/cffi.git";
rev = "5e838bf46d0089c43ebd3ea014a207c403e29c61";
};
in pkgs.nix.buildLisp.library {
name = "cffi";
deps = with pkgs.third_party.lisp; [
alexandria
asdf
babel
trivial-features
uiop
];
srcs = map (f: src + ("/src/" + f)) [
"cffi-sbcl.lisp"
"package.lisp"
"utils.lisp"
"libraries.lisp"
"early-types.lisp"
"types.lisp"
"enum.lisp"
"strings.lisp"
"structures.lisp"
"functions.lisp"
"foreign-vars.lisp"
"features.lisp"
];
}
|