diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-20 16:29:30 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-20 20:17:18 +0200 |
commit | 8b0701d97ab2f023c0c5f9d0a5aef1d731923a7b (patch) | |
tree | ad5038353624898e5991dfc6da632497082cc33b /gnu | |
parent | 2045af8035b9addef6065b7c04893fd8c38aede6 (diff) | |
download | guix-8b0701d97ab2f023c0c5f9d0a5aef1d731923a7b.tar.gz guix-8b0701d97ab2f023c0c5f9d0a5aef1d731923a7b.zip |
gnu: r-tinytex: Update to 0.6.
* gnu/packages/cran.scm (r-tinytex): Update to 0.6.
[propagated-inputs]: Add r-xfun.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8890ef810f..882c65e61c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2712,15 +2712,17 @@ terminals.") (define-public r-tinytex (package (name "r-tinytex") - (version "0.5") + (version "0.6") (source (origin (method url-fetch) (uri (cran-uri "tinytex" version)) (sha256 (base32 - "1pg4jfyvandjwz3lmr38pbqi9d045iwkk3xklhsfhhxq6aviq9p7")))) + "16y9dldaff2kx1fkm92p7zlph0dcrdmlmavpdgf5y9jbhmc8g83f")))) (build-system r-build-system) + (propagated-inputs + `(("r-xfun" ,r-xfun))) (home-page "https://github.com/yihui/tinytex") (synopsis "Helper functions for TeX Live and compiling LaTeX documents") (description |