Skip to content

Commit

Permalink
[fix](blog): change resume to pandoc
Browse files Browse the repository at this point in the history
Signed-off-by: Ralph Hightower <[email protected]>
  • Loading branch information
RalphHightower authored Jan 7, 2025
1 parent bdc6858 commit f1ec7da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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: {
Expand Down

0 comments on commit f1ec7da

Please sign in to comment.