Making the tfc-api in lisp use ningle rather than raw hunchentoot
This commit is contained in:
parent
038b813a0b
commit
228626b65d
3 changed files with 66 additions and 62 deletions
15
flake.nix
15
flake.nix
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue