tvl-depot/third_party/lisp/usocket.nix
Vincent Ambo aa122cbae7 style: format entire depot with nixpkgs-fmt
This CL can be used to compare the style of nixpkgs-fmt against other
formatters (nixpkgs, alejandra).

Change-Id: I87c6abff6bcb546b02ead15ad0405f81e01b6d9e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4397
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: lukegb <lukegb@tvl.fyi>
Reviewed-by: wpcarro <wpcarro@gmail.com>
Reviewed-by: Profpatsch <mail@profpatsch.de>
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: cynthia <cynthia@tvl.fyi>
Reviewed-by: edef <edef@edef.eu>
Reviewed-by: eta <tvl@eta.st>
Reviewed-by: grfn <grfn@gws.fyi>
2022-01-31 16:11:53 +00:00

46 lines
1.2 KiB
Nix

# Usocket is a portable socket library
{ depot, pkgs, ... }:
let
inherit (depot.nix) buildLisp;
src = with pkgs; srcOnly lispPackages.usocket;
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"; }
]);
}