summaryrefslogtreecommitdiff
path: root/thomaslabs/packages/tex.scm
blob: 7d533f72671b9fa03eb6713dc3bb9183c0545f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
(define-module (thomaslabs packages tex)
  #:use-module (guix packages)
  #:use-module ((guix licenses) #:prefix license:)

  #:use-module (guix build-system texlive))

(define-public texlive-circuitikz
  (package
    (name "texlive-circuitikz")
    (version (number->string %texlive-revision))
    (source (texlive-origin
             name version
             (list "doc/latex/circuitikz/"
                   "tex/latex/circuitikz/"
                   "tex/generic/circuitikz/"
                   "tex/context/third/circuitikz/")
             (base32
              "00zh7pxshi0fikzr3hnr4bwkn8zm45qscqh7jhdg1w6p09h9wi0k")))
    (build-system texlive-build-system)
    (home-page "")
    (synopsis "")
    (description
     "")
    (license license:lppl)))

(define-public texlive-esdiff
  (package
    (name "texlive-esdiff")
    (version (number->string %texlive-revision))
    (source (texlive-origin
             name version
             (list "doc/latex/esdiff/"
                   "tex/latex/esdiff/")
             (base32
              "1qivxp937zmndzb5569dabq6x1gnq40kvyyhmf1srkkk3fy5admp")))
    (build-system texlive-build-system)
    (home-page "")
    (synopsis "")
    (description
     "")
    (license license:lppl)))

(define-public texlive-pgfplots
  (package
    (name "texlive-pgfplots")
    (version (number->string %texlive-revision))
    (source (texlive-origin
             name version
             (list "doc/latex/pgfplots/"
                   "tex/latex/pgfplots/"
                   "tex/generic/pgfplots/"
                   "tex/plain/pgfplots/"
                   "scripts/pgfplots/")
             (base32
              "0dz6f1ap69pvjkdd1sp49882p3nzs12vpniawpmwf9962b3vmlij")))
    (build-system texlive-build-system)
    (home-page "")
    (synopsis "")
    (description
     "")
    (license license:lppl)))

(define-public texlive-mhchem
  (package
    (name "texlive-mhchem")
    (version (number->string %texlive-revision))
    (source (texlive-origin
             name version
             (list "tex/latex/mhchem/")
             (base32
              "07dnb38z8p5a46fp8rx3nqhqni0lwg48wzi2bc2nxb4yb0wlcfai")))
    (build-system texlive-build-system)
    (home-page "")
    (synopsis "")
    (description
     "")
    (license license:lppl)))