homepage/default.nix
2024-08-03 15:31:15 -06:00

15 lines
212 B
Nix

{ stdenv, zola, lib, ... }:
with lib;
stdenv.mkDerivation {
pname = "posixlycorrect.com";
version = "0.0.1";
src = ./posixlycorrect;
buildPhase = ''
${getExe zola} build --output-dir $out
'';
}