nix_config/homepage/default.nix
Fabian Montero 3abff4437a Add 'homepage/' from commit 'a07048bb01'
git-subtree-dir: homepage
git-subtree-mainline: 557d85391c
git-subtree-split: a07048bb01
2025-08-25 23:07:52 -06:00

14 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
'';
}