mirror of
https://github.com/beta-nu-theta-chi/bylaws.git
synced 2025-12-07 11:44:47 +00:00
19 lines
288 B
Nix
Executable File
19 lines
288 B
Nix
Executable File
{ stdenv, buildenv, ... }:
|
|
stdenv.mkDerivation {
|
|
pname = "BetaNuLBL";
|
|
version = "0.0.1";
|
|
|
|
src = ./src;
|
|
|
|
nativeBuildInputs = buildenv;
|
|
|
|
buildPhase = ''
|
|
export HOME=$(pwd)
|
|
quarto render --no-cache
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r _book/* $out
|
|
'';
|
|
} |