tvl-depot/website/habits/default.nix

14 lines
296 B
Nix
Raw Normal View History

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