2020-01-21 03:06:11 +01:00
|
|
|
# Usocket is a portable socket library
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-21 03:06:11 +01:00
|
|
|
|
2021-04-10 02:13:18 +02:00
|
|
|
let
|
|
|
|
inherit (depot.nix) buildLisp;
|
2020-01-27 00:59:07 +01:00
|
|
|
|
2021-04-10 02:13:18 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "usocket";
|
|
|
|
repo = "usocket";
|
|
|
|
rev = "fdf4fd1e0051ce83340ccfbbc8a43a462bb19cf2";
|
|
|
|
sha256 = "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826";
|
|
|
|
};
|
2020-01-27 00:59:07 +01:00
|
|
|
in buildLisp.library {
|
2020-01-21 03:06:11 +01:00
|
|
|
name = "usocket";
|
2020-02-21 13:47:29 +01:00
|
|
|
deps = with depot.third_party.lisp; [
|
2020-01-27 00:59:07 +01:00
|
|
|
(buildLisp.bundled "asdf")
|
2021-08-13 22:24:50 +02:00
|
|
|
{
|
|
|
|
ecl = buildLisp.bundled "sb-bsd-sockets";
|
|
|
|
sbcl = buildLisp.bundled "sb-bsd-sockets";
|
|
|
|
}
|
2020-01-21 03:06:11 +01:00
|
|
|
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"
|
2021-08-09 02:47:07 +02:00
|
|
|
] ++ [
|
|
|
|
{ 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"; }
|
2021-08-13 22:24:50 +02:00
|
|
|
|
|
|
|
# Same for CCL
|
|
|
|
{ ccl = "${src}/backend/openmcl.lisp"; }
|
|
|
|
{ ccl = "${src}/backend/clozure.lisp"; }
|
2020-01-21 03:06:11 +01:00
|
|
|
]);
|
|
|
|
}
|