aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/perl.scm
blob: 8adca069170266935e53c4a9805190b9f220c4ee (about) (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
(define-module (xyz euandreh perl)
  #:use-module (gnu packages language)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages perl-check)
  #:use-module (guix build-system perl)
  #:use-module (guix download)
  #:use-module (guix licenses)
  #:use-module (guix packages))

(define-public perl-config-tiny
  (package
    (name "perl-config-tiny")
    (version "2.28")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/R/RS/RSAVAGE/Config-Tiny-"
              version
              ".tgz"))
        (sha256
          (base32 "000mw17nb7aj341s0afqimxd53w5y0c4yk61pihqzm191lx89pqj"))))
    (build-system perl-build-system)
    (native-inputs
      (list perl-test-pod))
    (home-page "https://metacpan.org/release/Config-Tiny")
    (synopsis "Read/Write .ini style files with as little code as possible")
    (description "FIXME: fill-in-yourself!")
    (license perl-license)))

(define-public perl-pod-spell
  (package
    (name "perl-pod-spell")
    (version "1.20")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/D/DO/DOLMEN/Pod-Spell-"
              version
              ".tar.gz"))
        (sha256
          (base32 "0g6hdnc98gc3widr7sja313b1606g37a0mw0l0wxih1bwazzg0v3"))))
    (build-system perl-build-system)
    (native-inputs
      (list perl-file-sharedir-install
            perl-test-deep))
    (propagated-inputs
      (list perl-class-tiny
            perl-file-sharedir
            perl-lingua-en-inflect
            perl-path-tiny
            perl-pod-parser))
    (home-page "https://metacpan.org/release/Pod-Spell")
    (synopsis "a formatter for spellchecking Pod")
    (description "FIXME: fill-in-yourself!")
    (license artistic2.0)))

(define-public perl-ppix-quotelike
  (package
    (name "perl-ppix-quotelike")
    (version "0.022")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/W/WY/WYANT/PPIx-QuoteLike-"
              version
              ".tar.gz"))
        (sha256
          (base32 "12ip3l8vsxqyabnxrgd723vhnjc2yrwbgrxqi8c6a6sn7f6lhhz0"))))
    (build-system perl-build-system)
    (native-inputs
      (list perl-module-build))
    (propagated-inputs
      (list perl-ppi
            perl-readonly))
    (home-page "https://metacpan.org/release/PPIx-QuoteLike")
    (synopsis "Parse Perl string literals and string-literal-like things.")
    (description "FIXME: fill-in-yourself!")
    (license perl-license)))

(define-public perl-ppix-regexp
  (package
    (name "perl-ppix-regexp")
    (version "0.085")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/W/WY/WYANT/PPIx-Regexp-"
              version
              ".tar.gz"))
        (sha256
          (base32 "07fg63ql3f7hv1ys10l8j0p562ndraq9lk66iw9y0f444j4vpw1f"))))
    (build-system perl-build-system)
    (native-inputs
      (list perl-module-build))
    (propagated-inputs
      (list perl-ppi
            perl-task-weaken))
    (home-page "https://metacpan.org/release/PPIx-Regexp")
    (synopsis "Parse regular expressions")
    (description "FIXME: fill-in-yourself!")
    (license perl-license)))

(define-public perl-ppix-utilities
  (package
    (name "perl-ppix-utilities")
    (version "1.001000")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/E/EL/ELLIOTJS/PPIx-Utilities-"
              version
              ".tar.gz"))
        (sha256
          (base32 "16yb7dnz8lgq2azs8jxj1wac60kbn16x8y4py04ci8nndww87903"))))
    (build-system perl-build-system)
    (native-inputs
    (list perl-module-build
          perl-ppi
          perl-test-deep))
    (propagated-inputs
      (list perl-exception-class
            perl-ppi
            perl-readonly
            perl-readonly-xs
            perl-task-weaken))
    (home-page "https://metacpan.org/release/PPIx-Utilities")
    (synopsis "Extensions to PPI.")
    (description "FIXME: fill-in-yourself!")
    (license perl-license)))

(define-public perl-string-format
  (package
    (name "perl-string-format")
    (version "1.18")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/S/SR/SREZIC/String-Format-"
              version
              ".tar.gz"))
        (sha256
          (base32 "0y77frxzjifd4sw0j19cc346ysas1mya84rdxaz279lyin7plhcy"))))
    (build-system perl-build-system)
    (home-page "https://metacpan.org/release/String-Format")
    (synopsis "sprintf-like string formatting capabilities with arbitrary format definitions")
    (description "FIXME: fill-in-yourself!")
    (license #f)))

(define-public perl-readonly-xs
  (package
    (name "perl-readonly-xs")
    (version "1.05")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/R/RO/ROODE/Readonly-XS-"
              version
              ".tar.gz"))
        (sha256
          (base32 "03gz7yp194fwah2bc36ww04hgw1qx8p6y68vvnywircrablc9rca"))))
    (build-system perl-build-system)
    (propagated-inputs
      (list perl-readonly))
    (home-page "https://metacpan.org/release/Readonly-XS")
    (synopsis "Companion module for Readonly.pm, to speed up read-only scalar variables.")
    (description "FIXME: fill-in-yourself!")
    (license #f)))

(define-public perl-critic
  (package
    (name "perl-critic")
    (version "1.140")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
              "mirror://cpan/authors/id/P/PE/PETDANCE/Perl-Critic-"
              version
              ".tar.gz"))
        (sha256
          (base32 "1nzxpn71mrpp85yxrxlraj52q2skvf9ja887ls11d57h6smg1vmz"))))
    (build-system perl-build-system)
    (native-inputs
      (list perl-module-build
            perl-test-deep
            perl-test-deep))
    (propagated-inputs
      (list perl-b-keywords
            perl-config-tiny
            perl-exception-class
            perl-file-which
            perl-io-string
            perl-list-moreutils
            perl-module-build
            perl-module-pluggable
            perltidy
            perl-pod-parser
            perl-pod-spell
            perl-ppi
            perl-ppix-quotelike
            perl-ppix-regexp
            perl-ppix-utilities
            perl-readonly
            perl-string-format
            perl-task-weaken))
    (home-page "https://metacpan.org/release/Perl-Critic")
    (synopsis "Critique Perl source code for best-practices.")
    (description "FIXME: fill-in-yourself!")
    (license perl-license)))

(list
 perl-critic)