e4ddc3ba75
Thanks to the Nix anti-patterns documented here... https://nix.dev/anti-patterns/language.html#reproducability-referencing-top-level-directory-with ...I'm cleaning up some of my Nix expressions. Read the article for more context.
13 lines
282 B
Nix
13 lines
282 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "habits-webpage";
|
|
src = builtins.path { path ../../org; name = "org"; };
|
|
buildInputs = [];
|
|
buildPhase = ''
|
|
${pkgs.pandoc}/bin/pandoc $src/habits.org -o index.html
|
|
'';
|
|
installPhase = ''
|
|
mv index.html $out
|
|
'';
|
|
}
|