finally able to deploy lisp server
This commit is contained in:
parent
652495516a
commit
a4f71e474f
3 changed files with 23 additions and 16 deletions
24
default.nix
24
default.nix
|
@ -17,13 +17,12 @@ let
|
|||
clack
|
||||
jzon
|
||||
serapeum
|
||||
deploy
|
||||
openssl
|
||||
openssl.out
|
||||
openssl.dev
|
||||
]);
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
sbcl.buildASDFSystem {
|
||||
name = "tfcconnection";
|
||||
pname = "tfcconnection";
|
||||
version = "0.0.1";
|
||||
|
@ -38,6 +37,23 @@ stdenv.mkDerivation rec {
|
|||
hugo
|
||||
go
|
||||
sbcl'
|
||||
openssl
|
||||
openssl.out
|
||||
openssl.dev
|
||||
];
|
||||
|
||||
nativeLibs = [
|
||||
openssl
|
||||
openssl.out
|
||||
openssl.dev
|
||||
];
|
||||
|
||||
lispLibs = with sbclPackages; [
|
||||
hunchentoot
|
||||
dexador
|
||||
clack
|
||||
jzon
|
||||
serapeum
|
||||
];
|
||||
|
||||
buildPhase = ''
|
||||
|
@ -48,8 +64,8 @@ stdenv.mkDerivation rec {
|
|||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp tfcapi $out/bin
|
||||
# wrapProgram $out/bin/tfcapi \
|
||||
# --prefix LD_LIBRARY_PATH : $LD_LIBRARY_PATH \
|
||||
wrapProgram $out/bin/tfcapi \
|
||||
--prefix LD_LIBRARY_PATH : $LD_LIBRARY_PATH \
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue