guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

12/47: gnu: Add texlive-latex-dinbrief.


From: Ricardo Wurmus
Subject: 12/47: gnu: Add texlive-latex-dinbrief.
Date: Mon, 17 Jul 2017 08:04:08 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 7cda03bd87e7760cb6f23c23a746a1fc2499de10
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Jul 9 22:46:23 2017 +0200

    gnu: Add texlive-latex-dinbrief.
    
    * gnu/packages/tex.scm (texlive-latex-dinbrief): New variable.
---
 gnu/packages/tex.scm | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index ea27e1f..dedd286 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -1649,6 +1649,39 @@ the @code{latin} option provides a short \"lorem ipsum\" 
(for a fuller \"lorem
 ipsum\" text, see the @code{lipsum} package).")
     (license license:lppl)))
 
+(define-public texlive-latex-dinbrief
+  (package
+    (name "texlive-latex-dinbrief")
+    (version (number->string %texlive-revision))
+    (source (origin
+              (method svn-fetch)
+              (uri (texlive-ref "latex" "dinbrief"))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "0lb0kiy8fxzl6cnhcw1sggy6jrjvcd6kj1kkw3k9lkimm388yjz6"))))
+    (build-system texlive-build-system)
+    (arguments
+     '(#:tex-directory "latex/dinbrief"
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'remove-generated-file
+           (lambda _
+             (delete-file "dinbrief.drv")
+             #t)))))
+    (home-page "http://www.ctan.org/pkg/dinbrief";)
+    (synopsis "German letter DIN style")
+    (description
+     "This package implements a document layout for writing letters according
+to the rules of DIN (Deutsches Institut für Normung, German standardisation
+institute).  A style file for LaTeX 2.09 (with limited support of the
+features) is part of the package.  Since the letter layout is based on a
+German standard, the user guide is written in German, but most macros have
+English names from which the user can recognize what they are used for.  In
+addition there are example files showing how letters may be created with the
+package.")
+    (license license:lppl)))
+
 (define-public texlive-latex-natbib
   (package
     (name "texlive-latex-natbib")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]