diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:00:24 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:50 +0200 |
commit | 54e015e7cd5d56bfcc5fdfda9f5b9df88ef6f339 (patch) | |
tree | 7369502e4b463c50e680c8e03faa7a5a3d320621 /gnu/packages | |
parent | 307c5eca6a00b52b72503d4f0cf3fd8cfcbc4668 (diff) | |
download | guix-54e015e7cd5d56bfcc5fdfda9f5b9df88ef6f339.tar.gz |
gnu: Add texlive-milog.
* gnu/packages/tex.scm (texlive-milog): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4e0b043759..b389d1ee7a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -32142,6 +32142,29 @@ layouts and designs. The class also provides the functionality of over thirty of the more popular packages, thus simplifying document sources.") (license license:lppl1.3+))) +(define-public texlive-milog + (package + (name "texlive-milog") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/milog/" "tex/latex/milog/") + (base32 + "1114i8hgs84nnvmkiy8azbh6rgk0gjzp387idvvkx651vcyc82kf"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/milog") + (synopsis + "LaTeX class for documentation duties according to the German minimum wage law +MiLoG") + (description + "The @file{milog.cls} class provides means to fulfill the documentation +duties by the German minimum wage law MiLoG. The recording of working hours +is carried out in a simple CSV file from which the class will automatically +create a time sheet. Alternatively, data can also be collected by a CSV +export of a suitable app.") + (license license:lppl))) + (define-public texlive-fp (package (name "texlive-fp") |