blob: dc4281c795c09778139a781f7e3eb57d09df8679 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Usocket is a portable socket library
{ depot, pkgs, ... }:
let
inherit (depot.nix) buildLisp;
src = pkgs.fetchFromGitHub {
owner = "usocket";
repo = "usocket";
rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2";
sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826";
};
in buildLisp.library {
name = "usocket";
deps = with depot.third_party.lisp; [
(buildLisp.bundled "asdf")
{
ecl = buildLisp.bundled "sb-bsd-sockets";
sbcl = buildLisp.bundled "sb-bsd-sockets";
}
split-sequence
];
srcs = [
# usocket also reads its version from ASDF, but there's further
# shenanigans happening there that I don't intend to support right
# now. Behold:
(builtins.toFile "usocket.asd" ''
(in-package :asdf)
(defsystem usocket
:version "0.8.3")
'')
] ++
# Now for the regularly scheduled programming:
(map (f: src + ("/" + f)) [
"package.lisp"
"usocket.lisp"
"condition.lisp"
] ++ [
{ sbcl = "${src}/backend/sbcl.lisp"; }
# ECL actually has two files, it supports the SBCL backend,
# but usocket also has some ECL specific code
{ ecl = "${src}/backend/sbcl.lisp"; }
{ ecl = "${src}/backend/ecl.lisp"; }
# Same for CCL
{ ccl = "${src}/backend/openmcl.lisp"; }
{ ccl = "${src}/backend/clozure.lisp"; }
]);
}
|