Skip to content

Instantly share code, notes, and snippets.

@infinisil
Created October 11, 2017 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save infinisil/736e21ad500174d01ea2e7114bcf6622 to your computer and use it in GitHub Desktop.
Save infinisil/736e21ad500174d01ea2e7114bcf6622 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "pdf";
src = ./.;
buildInputs = [
pandoc
texlive.combined.scheme-small
];
buildPhase = ''
pandoc *.md -V geometry:margin=2cm -o result.pdf
'';
installPhase = ''
mkdir $out
mv result.pdf $out
'';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment