(use-modules (guix packages) (guix build-system texlive) (guix build-system copy) (guix svn-download) (guix licenses)) (define-public texlive-generic-babel-hungarian (package (name "texlive-generic-babel-hungarian") (version (number->string %texlive-revision)) (source (origin (method svn-fetch) (uri (let ((component "generic") (id "babel-hungarian")) (svn-reference (url (string-append "svn://www.tug.org/texlive/tags/" %texlive-tag "/Master/texmf-dist/" "tex/" component "/" id)) (revision %texlive-revision)))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "0xk21zw4wdp844yd0dsgmbfy9rs235kx6v3iv92f4chm3g9acb51")))) (build-system copy-build-system) (arguments '(#:install-plan '(("." "share/texmf-dist/tex/generic/babel-hungarian")))) (home-page "https://www.ctan.org/pkg/babel-hungarian") (synopsis "Babel support for Hungarian") (description #f) (license #f))) ;;license:lppl1.3+ (packages->manifest (cons* texlive-generic-babel-hungarian (map specification->package (list "texlive-latex-base" "latex2html" "texlive-bin" "texlive-metafont-base" "texlive-latex-babel" "texlive-latex-amscls" "texlive-latex-amsmath"))))