6de462f674
This HTTP client has much fewer dependencies than some of the other ones I've seen, and it'll be good enough for my demo purposes.
10 lines
256 B
Nix
10 lines
256 B
Nix
# SB-BSD-SOCKETS is an SBCL component. This package just forces it to
|
|
# be loaded.
|
|
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
|
|
nix.buildLisp.library {
|
|
name = "sb-bsd-sockets";
|
|
srcs = lib.singleton (builtins.toFile "sb-bsd-sockets.lisp" "(require 'sb-bsd-sockets)");
|
|
}
|