From 502e5b94c084a5bbda1a16ecdd56389c06de5997 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:52:32 +0200 Subject: [PATCH] gnu: Add texlive-hpsdiss. * gnu/packages/tex.scm (texlive-hpsdiss): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8e8eec35d1..144a5d775c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -85010,6 +85010,25 @@ included packages via @code{\\RequirePackage} rather than copying their source.") (license license:lppl1.3c))) +(define-public texlive-hpsdiss + (package + (name "texlive-hpsdiss") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hpsdiss/" "source/latex/hpsdiss/" + "tex/latex/hpsdiss/") + (base32 + "15md2rk5bimgy7fjsiq9jvgg18i4ajnrljpzyvy0cc7rfla1myks"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hpsdiss") + (synopsis "Dissertation class") + (description + "The class was developed to typeset a dissertation at ETH Zurich. The +requirements were to use A5 paper and 10pt type.") + (license license:gpl3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar