making server buildable

This commit is contained in:
Chris Cochrun 2023-06-13 07:34:00 -05:00
parent bc15f05603
commit ec3bde1191
6 changed files with 85 additions and 17 deletions

View file

@ -2,9 +2,25 @@
stdenv,
lib,
hugo,
go
go,
sbcl,
sbclPackages,
makeWrapper,
openssl
}:
let
sbcl' = sbcl.withPackages (ps: with ps; [
hunchentoot
dexador
clack
jzon
serapeum
openssl
openssl.out
openssl.dev
]);
in
stdenv.mkDerivation rec {
name = "tfcconnection";
pname = "tfcconnection";
@ -12,16 +28,22 @@ stdenv.mkDerivation rec {
src = ./.;
nativeBuildInputs = [
makeWrapper
];
buildInputs = [
hugo
go
sbcl'
];
buildPhase = ''
hugo
make
'';
installPhase = ''
'';
meta = with lib; {