tfcconnection/default.nix

85 lines
1.2 KiB
Nix

{
stdenv,
lib,
hugo,
go,
sbcl,
sbclPackages,
makeWrapper,
openssl
}:
let
sbcl' = sbcl.withPackages (ps: with ps; [
hunchentoot
dexador
jzon
serapeum
deploy
spinneret
lass
cl-smtp
pkgs.openssl
pkgs.openssl.out
pkgs.openssl.dev
]);
in
sbcl.buildASDFSystem {
name = "tfcconnection";
pname = "tfcconnection";
version = "0.0.1";
src = ./.;
nativeBuildInputs = [
makeWrapper
];
buildInputs = [
hugo
go
sbcl'
openssl
openssl.out
openssl.dev
];
nativeLibs = [
openssl
openssl.out
openssl.dev
];
lispLibs = with sbclPackages; [
hunchentoot
dexador
jzon
serapeum
deploy
spinneret
lass
cl-smtp
];
buildPhase = ''
export HOME=$(pwd)
${sbcl'}/bin/sbcl --load build.lisp
'';
installPhase = ''
mkdir -p $out/bin
cp tfcapi $out/bin
wrapProgram $out/bin/tfcserver \
--prefix LD_LIBRARY_PATH : $LD_LIBRARY_PATH \
'';
meta = with lib; {
name = "tfcconnection";
description = "TFC Connection Website";
homepage = "https://tfcconnection.org";
license = licenses.gpl3;
maintainers = [ "chriscochrun" ];
platforms = platforms.all;
};
}