tvl-depot/website/habits/default.nix

14 lines
244 B
Nix
Raw Normal View History

{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "habits-webpage";
src = ../../org;
buildInputs = [];
buildPhase = ''
${pkgs.pandoc}/bin/pandoc $src/habits.org -o index.html
'';
installPhase = ''
mv index.html $out
'';
}