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