From 9d0b655e726739c1e95e36d13c32c0bbb6e30c07 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Fri, 9 Feb 2024 03:57:14 +0300 Subject: [PATCH] Readme : Add info about Nix shell support & cleanup. --- Readme.md | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/Readme.md b/Readme.md index 2bee178..580954e 100644 --- a/Readme.md +++ b/Readme.md @@ -7,11 +7,13 @@ [Русская версия](/voronind/resume/releases/download/latest/voronind_ru.pdf) ## How to build. + ```bash $ make ``` ### Available targets. + Taget | Description --- | --- all | Clean, build and open all languages. @@ -21,25 +23,19 @@ en | Build English resume. ru | Build Russian resume. open | Open built resumes in default PDF viewer. +### Nix shell support. + +```bash +nix develop +``` + ## Requirements. + * `GNU/Linux` (not tested on other platforms). * `LuaLaTeX` for the document itself. * `ImageMagick` (optional) for colored icons. -### Texlive setup. -```text -$ wget https://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz -$ tar -xf install-tl-unx.tar.gz -$ rm install-tl-unx.tar.gz -$ cd ./install-tl-* -$ ./install-tl -``` - ### Installing missing dependencies. + When trying to build the project, lualatex may throw missing dependency errors. To install them use `$ tlmgr install $dependency`. - -## TODO. -- [x] Change icon color on build. -- [x] Fallback for using black icons if ImageMagick is not available. -- [ ] Show warning if ImageMagick is not available.