homepage/default.nix

15 lines
212 B
Nix
Raw Normal View History

2024-08-03 23:30:31 +02:00
{ stdenv, zola, lib, ... }:
with lib;
stdenv.mkDerivation {
pname = "posixlycorrect.com";
version = "0.0.1";
src = ./posixlycorrect;
buildPhase = ''
${getExe zola} build --output-dir $out
'';
}