Making the tfc-api in lisp use ningle rather than raw hunchentoot

This commit is contained in:
Chris Cochrun 2024-09-19 14:37:27 -05:00
parent 038b813a0b
commit 228626b65d
3 changed files with 66 additions and 62 deletions

View file

@ -28,6 +28,9 @@
cl_plus_ssl
fiveam
slite
clack
woo
ningle
pkgs.openssl
pkgs.openssl.out
pkgs.openssl.dev
@ -68,7 +71,17 @@
in
{
devShell = import ./shell.nix { inherit pkgs; };
devShell = pkgs.mkShell {
name = "tfc-api";
version = "0.0.1";
src = src;
nativeBuildInputs = nbi;
buildInputs = bi;
nativeLibs = nativeLibs;
shellHook = ''
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath nativeLibs}"
'';
};
packages.default = pkgs.rustPlatform.buildRustPackage {
pname = "api";
version = "0.0.1";