From f1ec7da05a88a7270ed7fa5c9ea34517057b5ff7 Mon Sep 17 00:00:00 2001 From: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:39:41 -0500 Subject: [PATCH] [fix](blog): change resume to pandoc Signed-off-by: Ralph Hightower <32745442+RalphHightower@users.noreply.github.com> --- flake.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index ed1d8665..2109495f 100644 --- a/flake.nix +++ b/flake.nix @@ -23,7 +23,7 @@ buildResumeFor = system: let pkgs = pkgsFor system; - in pkgs.runCommand "build-resume" { + in pkgs.runCommand "build-pandoc" { nativeBuildInputs = with pkgs; [ pandoc texlive.combined.scheme-context ]; } '' cd ${self} @@ -32,11 +32,11 @@ in { packages = perSystem (system: let - resume = buildResumeFor system; + pandoc = buildPandocFor system; in { - inherit resume; - default = resume; + inherit pandoc; + default = pandoc; }); devShells = perSystem (system: {