aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/documentation.scm
blob: 5d455431d3c586c9dcd60947103730a547c5102e (about) (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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2014, 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
;;; Copyright © 2016 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2017, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2020 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2021, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2022 Maxim Cournoyer <maxim.counoyer@gmail.com>
;;; Copyright © 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages documentation)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system perl)
  #:use-module (guix build-system python)
  #:use-module (guix build-system qt)
  #:use-module (guix deprecation)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages backup)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages check)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages bison)
  #:use-module (gnu packages kde-frameworks)
  #:use-module (gnu packages docbook)
  #:use-module (gnu packages flex)
  #:use-module (gnu packages graphviz)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages sqlite)
  #:use-module (gnu packages sphinx)
  #:use-module (gnu packages xml)
  #:use-module (gnu packages xorg))

(define-public latex2html
  (package
    (name "latex2html")
    (version "2022.2")
    (source
     (origin
       (method git-fetch)
       (uri
        (git-reference
         (url "https://github.com/latex2html/latex2html")
         (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1z71anjzxy5jsdlaqba4w9spncc6iycldarnr2z1dq8xmk6yhpjn"))))
    (build-system gnu-build-system)
    (arguments
     (list #:phases
           #~(modify-phases %standard-phases
               (add-after 'unpack 'patch-configure
                 (lambda* (#:key outputs #:allow-other-keys)
                   (substitute* "configure"
                     (("/usr/local")
                      #$output)
                     (("\\$\\{CONFIG_SHELL-/bin/sh\\}")
                      (which "bash")))))
               (replace 'configure
                 (lambda _
                   (invoke "./configure")))
               (add-after 'configure 'patch-cfgcache
                 (lambda* (#:key outputs #:allow-other-keys)
                   (substitute* "cfgcache.pm"
                     (("/usr/local")
                      #$output)))))))
    (inputs
     (list perl))
    (synopsis "LaTeX documents to HTML")
    (description "LaTeX2HTML is a utility that converts LaTeX documents to web
pages in HTML.")
    (home-page "https://www.latex2html.org/")
    (license gpl2+)))

(define-public asciidoc
  (package
    (name "asciidoc")
    (version "9.1.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/asciidoc/asciidoc-py")
                    (commit version)))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1clf1axkns23wfmh48xfspzsnw04pjh4mq1pshpzvj0cwxhz0yaq"))))
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f                     ; no 'check' target
       #:phases
       (modify-phases %standard-phases
         (replace 'bootstrap
           (lambda _
             (invoke "autoconf")))
         ;; Some XML-related binaries are required for asciidoc's proper usage.
         ;; Without these, asciidoc fails when parsing XML documents, either
         ;; reporting a missing "xmllint" binary or, when passed the
         ;; "--no-xmllint" option, a missing "xsltproc" binary.
         ;; The following phase enables asciidoc to find some of them.
         (add-before 'configure 'set-xml-binary-paths
                     (lambda* (#:key inputs #:allow-other-keys)
                       (let* ((libxml2 (assoc-ref inputs "libxml2"))
                              (xmllint (string-append libxml2 "/bin/xmllint"))
                              (libxslt (assoc-ref inputs "libxslt"))
                              (xsltproc (string-append libxslt "/bin/xsltproc")))
                         (substitute* "a2x.py"
                           (("XMLLINT = 'xmllint'")
                            (string-append "XMLLINT = '" xmllint "'"))
                           (("XSLTPROC = 'xsltproc'")
                            (string-append "XSLTPROC = '" xsltproc "'"))))))
         ;; Make asciidoc use the local docbook-xsl package instead of fetching
         ;; it from the internet at run-time.
         (add-before 'install 'make-local-docbook-xsl
                     (lambda* (#:key inputs #:allow-other-keys)
                       (substitute* (find-files "docbook-xsl" ".*\\.xsl$")
                         (("xsl:import href=\"http://docbook.sourceforge.net/\
release/xsl/current")
                          (string-append
                           "xsl:import href=\""
                           (string-append (assoc-ref inputs "docbook-xsl")
                                          "/xml/xsl/docbook-xsl-"
                                          ,(package-version docbook-xsl)))))))
         ;; Do the same for docbook-xml.
         (add-before 'install 'make-local-docbook-xml
                     (lambda* (#:key inputs #:allow-other-keys)
                       (substitute* "docbook45.conf"
                         (("http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd")
                          (string-append (assoc-ref inputs "docbook-xml")
                                         "/xml/dtd/docbook/docbookx.dtd"))))))))
    (native-inputs (list autoconf))
    (inputs (list python docbook-xml-4.5 docbook-xsl libxml2 libxslt))
    (home-page "https://asciidoc.org/")
    (synopsis "Text-based document generation system")
    (description
     "AsciiDoc is a text document format for writing notes, documentation,
articles, books, ebooks, slideshows, web pages, man pages and blogs.
AsciiDoc files can be translated to many formats including HTML, PDF,
EPUB, man page.

AsciiDoc is highly configurable: both the AsciiDoc source file syntax and
the backend output markups (which can be almost any type of SGML/XML
markup) can be customized and extended by the user.")
    (license gpl2+)))

(define-deprecated asciidoc-py3 asciidoc)

(define-public doxygen
  (package
    (name "doxygen")
    (version "1.9.5")
    (home-page "https://www.doxygen.nl/")
    (source (origin
              (method url-fetch)
              (uri (list (string-append home-page "files/doxygen-"
                                        version ".src.tar.gz")
                         (string-append "mirror://sourceforge/doxygen/rel-"
                                        version "/doxygen-" version
                                        ".src.tar.gz")))
              (sha256
               (base32
                "1v1f9cp5lyymg7xmw0ldnzi7ql8agbaqam1xdyljk0lrbnrm9d2m"))))
    (build-system cmake-build-system)
    (native-inputs
     (list bison
           flex
           libxml2                      ;provides xmllint for the tests
           python))                     ;for creating the documentation
    (inputs
     (list bash-minimal))
    (arguments
     ;; Force cmake to use iconv header from cross-libc instead of the one
     ;; from native libc.
     (list
      #:configure-flags
      (if (%current-target-system)
          #~(list (string-append "-DICONV_INCLUDE_DIR="
                                 (assoc-ref %build-inputs "cross-libc")
                                 "/include"))
          #~'())
      #:test-target "tests"
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'disable-bibtex-test
            (lambda _
              ;; Disable test that requires bibtex to avoid a
              ;; circular dependency.
              (for-each delete-file-recursively
                        '("testing/012" "testing/012_cite.dox"))))
          (add-before 'configure 'patch-sh
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((/bin/sh (search-input-file inputs "/bin/sh")))
                (substitute* "src/portable.cpp"
                  (("/bin/sh")
                   /bin/sh)))))
          #$@(if (target-hurd?)
                 #~((add-after 'unpack 'apply-patch
                      (lambda _
                        (let ((patch-file
                               #$(local-file
                                  (search-patch "doxygen-hurd.patch"))))
                          (invoke "patch" "--force" "-p1" "-i" patch-file)))))
                 #~()))))
    (synopsis "Generate documentation from annotated sources")
    (description "Doxygen is the de facto standard tool for generating
documentation from annotated C++ sources, but it also supports other popular
programming languages such as C, Objective-C, C#, PHP, Java, Python,
IDL (Corba, Microsoft, and UNO/OpenOffice flavors), Fortran, VHDL, Tcl,
and to some extent D.")
    (license gpl3+)))

(define-public doc++
  (package
    (name "doc++")
    (version "3.4.10")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://sourceforge.net/projects/docpp/"
                                  "files/doc++-" version ".tar.gz"))
              (sha256
               (base32
                "0i37zlxl8g352s4hzpdx0657k5x3czh3xcsfr27irc708gb277pn"))
              (patches (search-patches "doc++-include-directives.patch"
                                       "doc++-segfault-fix.patch"))))
    (build-system gnu-build-system)
    (native-inputs
     (list flex gettext-minimal))
    (home-page "https://docpp.sourceforge.net")
    (synopsis "Documentation system for C, C++, IDL, and Java")
    (description
     "DOC++ is a documentation system for C, C++, IDL, and Java.  It can
generate both TeX output for high-quality hardcopies or HTML output for online
browsing.  The documentation is extracted directly from the C/C++/IDL source
or Java class files.")
    (license gpl2+)))

(define-public pod2pdf
  (package
    (name "pod2pdf")
    (version "0.42")
    (source (origin
              (method url-fetch)
              (uri (string-append
                     "mirror://cpan/authors/id/J/JO/JONALLEN/pod2pdf-"
                     version
                     ".tar.gz"))
              (sha256
                (base32
                  "0w5p7yy01vph74nfr9qzjb18p1avmhhcpza0qz9r88fmb0blbiyv"))))
    (build-system perl-build-system)
    (propagated-inputs
     (list perl-getopt-argvfile
           perl-pdf-api2
           perl-pod-parser))
    (home-page "https://metacpan.org/release/pod2pdf")
    (synopsis "Convert Pod to PDF format")
    (description "pod2pdf converts documents written in Perl's @acronym{POD, Plain Old
Documentation} format to PDF files.  It also supports some extensions to the POD
format, and supports the file types JPG, GIF, TIFF, PNG, and PNM for embedded
objects.")
    (license artistic2.0)))

(define-public python-docrepr
  (package
    (name "python-docrepr")
    (version "0.2.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/spyder-ide/docrepr")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "1ma5gwy93m1djd3zdlnqfrwhgr8ic1qbsz5kkrb9f987ax40lfkd"))
              (patches (search-patches "python-docrepr-fix-tests.patch"))))
    (build-system python-build-system)
    (arguments
     (list
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch-sources
            (lambda _
              ;; XXX: This fixes an issue where shutil.copytree would fail
              ;; merging directories with same files copied by Sphinx from the
              ;; store (hence read-only, throwing a Permission denied error).
              ;; In the case this happens, it falls back to a manual copy
              ;; routine that omits overwriting same-named files (see:
              ;; https://github.com/spyder-ide/docrepr/issues/54).
              (substitute* "docrepr/utils.py"
                (("except TypeError")
                 "except (TypeError, shutil.Error)"))))
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
              (when tests?
                (invoke "pytest" "-p" "no:warnings" "-vv")))))))
    (native-inputs
     (list python-ipython
           python-matplotlib
           python-numpy
           python-pytest
           python-pytest-asyncio))
    (propagated-inputs
     (list python-docutils
           python-jinja2
           python-matplotlib
           python-sphinx))
    (home-page "https://github.com/spyder-ide/docrepr/")
    (synopsis "Python docstrings to HTML renderer")
    (description "Docrepr renders Python docstrings to HTML with Sphinx.  It
can generate rich and plain representations of docstrings, alongside
additional metadata about the object to which the docstring belongs.")
    (license bsd-3)))

(define-public scrollkeeper
  (package
    (name "scrollkeeper")
    (version "0.3.14")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/scrollkeeper/scrollkeeper/"
                           version "/scrollkeeper-" version ".tar.gz"))
       (sha256
        (base32 "1bfxwxc1ngh11v36z899sz9qam366r050fhkyb5adv65lb1x62sa"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       (list (string-append "--with-xml-catalog="
                            (assoc-ref %build-inputs "docbook-xml")
                            "/xml/dtd/docbook/catalog.xml"))))
    (inputs
     (list perl libxml2 libxslt
           ;; The configure script checks for either version 4.2 or 4.1.2.
           docbook-xml-4.2))
    (native-inputs
     (list intltool))
    (home-page "https://scrollkeeper.sourceforge.net/")
    (synopsis "Open Documentation Cataloging Project")
    (description
     "ScrollKeeper is a cataloging system for documentation.  It manages
documentation metadata as specified by the Open Source Metadata Framework and
provides a simple API to allow help browsers to find, sort, and search the
document catalog.  It will also be able to communicate with catalog servers on
the Net to search for documents which are not on the local system.")
    (license lgpl2.1+)))

(define-public zeal
  (let ((commit "1cfa7c637f745be9d98777f06b4f8dec90892bf2")
        (revision "1"))
    (package
      (name "zeal")
      (version (git-version "0.6.1" revision commit))
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/zealdocs/zeal")
               (commit commit)))
         (file-name (git-file-name name version))
         (sha256
          (base32 "1m7pp3cwc21x03718vhwfd9j2n8md3hv5dp10s234vcsd755s7a3"))))
      (build-system qt-build-system)
      (arguments
       `(#:tests? #f                    ;no tests
         #:phases
         (modify-phases %standard-phases
           (add-after 'wrap 'wrap-qt-process-path
             (lambda* (#:key inputs outputs #:allow-other-keys)
               (let* ((out (assoc-ref outputs "out"))
                      (bin (string-append out "/bin/zeal"))
                      (qt-process-path (string-append
                                        (assoc-ref inputs "qtwebengine-5")
                                        "/lib/qt5/libexec/QtWebEngineProcess")))
                 (wrap-program bin
                   `("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))
                 #t))))))
      (native-inputs
       (list extra-cmake-modules pkg-config))
      (inputs
       `(("libarchive" ,libarchive)
         ("sqlite" ,sqlite)
         ("qtbase" ,qtbase-5)
         ("qtdeclarative-5" ,qtdeclarative-5)
         ("qtwebchannel-5" ,qtwebchannel-5)
         ("qtwebengine-5" ,qtwebengine-5)
         ("qtquickcontrols-5" ,qtquickcontrols-5)
         ("qtx11extras" ,qtx11extras)
         ("xcb-util-keyms" ,xcb-util-keysyms)))
      (home-page "https://zealdocs.org/")
      (synopsis "Offline documentation browser inspired by Dash")
      (description "Zeal is a simple offline documentation browser
inspired by Dash.")
      (license gpl3+))))
m-felixge-fgprof)) (home-page "https://github.com/pkg/profile") (synopsis "Simple profiling for Go") (description "Profile provides a simple way to manage runtime/pprof profiling of your Go application.") (license license:bsd-2))) (define-public go-github-com-prashantv-gostub (package (name "go-github-com-prashantv-gostub") (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/prashantv/gostub") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "035xf5w4fqlicdbbjcflsqflc0z5gmrn6wr7q41xwqfwfpraf9ah")))) (build-system go-build-system) (arguments '(#:import-path "github.com/prashantv/gostub")) (native-inputs (list go-github-com-stretchr-testify)) (home-page "https://github.com/prashantv/gostub") (synopsis "Stubbing library for Go") (description "Package gostub is used for stubbing variables in tests, and resetting the original value once the test has been run.") (license license:expat))) (define-public go-github-com-petermattis-goid (let ((commit "bb94eb51e7a772d09cef11768f3248ac25adf9f9") (revision "2")) (package (name "go-github-com-petermattis-goid") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/petermattis/goid") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0hr94frr0rhac4mb9r7ixdgr6hm63rxh6z43rhn2wn7fdy8csw11")))) (build-system go-build-system) (arguments (list #:import-path "github.com/petermattis/goid")) (home-page "https://github.com/petermattis/goid") (synopsis "Identify the running goroutine") (description "This package offers a method of programmatically retrieving the current goroutine's ID.") (license license:asl2.0)))) (define-public go-github-com-sasha-s-go-deadlock (package (name "go-github-com-sasha-s-go-deadlock") (version "0.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/sasha-s/go-deadlock") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0arb35idnyz4n118xz7p2snazqi35gk1975h1xfk0y4riiks58yz")))) (build-system go-build-system) (arguments (list #:import-path "github.com/sasha-s/go-deadlock")) (propagated-inputs (list go-github-com-petermattis-goid)) (home-page "https://github.com/sasha-s/go-deadlock") (synopsis "Deadlock detection in go") (description "This package provides tools for detecting deadlocks at run-time in Go.") (license license:asl2.0))) (define-public go-github-com-stretchr-testify (package (name "go-github-com-stretchr-testify") (version "1.9.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/stretchr/testify") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "12cnhk96h8b3ddlb7jfvwwavzc0j1c2iva92pszl9rv6r571ckzg")))) (build-system go-build-system) (arguments '(#:import-path "github.com/stretchr/testify")) (propagated-inputs (list go-github-com-davecgh-go-spew go-github-com-pmezard-go-difflib go-github-com-stretchr-objx go-gopkg-in-yaml-v3)) (home-page "https://github.com/stretchr/testify") (synopsis "Go helper library for tests and invariant checking") (description "This package provide many tools for testifying that your code will behave as you intend. Features include: @itemize @item Easy assertions @item Mocking @item HTTP response trapping @item Testing suite interfaces and functions. @end itemize") (license license:expat))) (define-public go-github-com-stretchr-testify-bootstrap (hidden-package (package (inherit go-github-com-stretchr-testify) (arguments '(#:import-path "github.com/stretchr/testify" #:tests? #f #:phases (modify-phases %standard-phases (delete 'build)))) (propagated-inputs (list go-gopkg-in-yaml-v3))))) (define-public go-github-com-stvp-go-udp-testing (package (name "go-github-com-stvp-go-udp-testing") (version "0.0.0-20201019212854-469649b16807") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/stvp/go-udp-testing") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "03dzhwnvbshiivbcawaxsl963d8hh18yf3ydvzvhyjgz60g8lxil")))) (build-system go-build-system) (arguments (list #:import-path "github.com/stvp/go-udp-testing")) (home-page "https://github.com/stvp/go-udp-testing") (synopsis "UDP test helpers for Golang") (description "This package implements UDP test helpers. It lets assert that certain strings must or must not be sent to a given local UDP listener.") (license license:expat))) (define-public go-github-com-tdewolff-test (package (name "go-github-com-tdewolff-test") (version "1.0.10") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tdewolff/test") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1ihlcnygwdgxq068b29d3n9n1gdbb2j03sc0al1qk5i5dkvgziyx")))) (build-system go-build-system) (arguments (list #:import-path "github.com/tdewolff/test")) (home-page "https://github.com/tdewolff/test") (synopsis "Go test helper functions") (description "This package implements a few functions that are useful for io testing, such as readers and writers that fail after N consecutive reads/writes.") (license license:expat))) (define-public go-github-com-tj-assert (package (name "go-github-com-tj-assert") (version "0.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tj/assert") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1j5swk3fjq1h5fpqkipddz2ccnbidr7qrpm5dpdaflg9q5jnc673")))) (build-system go-build-system) (arguments (list #:import-path "github.com/tj/assert")) (propagated-inputs (list go-github-com-stretchr-testify)) (home-page "https://github.com/tj/assert") (synopsis "Golang @code{testify/assert} but as @code{testify/require}") (description "Package assert implements the same assertions as the @url{https://github.com/stretchr/testify, assert} package but stops test execution when a test fails.") (license license:expat))) (define-public go-github.com-smartystreets-assertions (package (name "go-github.com-smartystreets-assertions") (version "1.13.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/smartystreets/assertions") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0flf3fb6fsw3bk1viva0fzrzw87djaj1mqvrx2gzg1ssn7xzfrzr")))) (build-system go-build-system) (arguments (list #:import-path "github.com/smartystreets/assertions" #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key inputs #:allow-other-keys #:rest args) (unless ;; The tests fail when run with gccgo. (false-if-exception (search-input-file inputs "/bin/gccgo")) (apply (assoc-ref %standard-phases 'check) args))))))) (native-inputs (list go-github.com-smartystreets-gunit)) (home-page "https://github.com/smartystreets/assertions") (synopsis "Assertions for testing with Go") (description "The @code{assertions} package provides convenient assertion functions for writing tests in Go.") (license license:expat))) (define-public go-github.com-smartystreets-goconvey (package (name "go-github.com-smartystreets-goconvey") (version "1.6.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/smartystreets/goconvey") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh")))) (build-system go-build-system) (arguments '(#:import-path "github.com/smartystreets/goconvey")) (propagated-inputs (list go-github-com-jtolds-gls go-github.com-smartystreets-assertions)) (home-page "https://github.com/smartystreets/goconvey") (synopsis "Go testing tool with both a web and terminal user interface") (description "GoConvey is a testing tool for Go. It integrates with go test, can show test coverage and has a web user interface that will refresh automatically.") (license license:expat))) (define-public go-github.com-smartystreets-gunit (package (name "go-github.com-smartystreets-gunit") (version "1.0.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/smartystreets/gunit") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "00m4zg0kdj49mnpmf9klb44ba71p966xsk6zknrzqgfc8119f35z")))) (build-system go-build-system) (arguments '(;; TODO: This package depends on go-github.com-smartystreets-assertions ;; for running the tests, but go-github.com-smartystreets-assertions ;; depends on this package, so break this loop by not running the tests ;; for this package. #:tests? #f #:import-path "github.com/smartystreets/gunit")) (home-page "https://github.com/smartystreets/gunit") (synopsis "Testing tool for Go, in the style of xUnit") (description "@code{gunit} allows the test author to use a struct as the scope for a group of related test cases, in the style of xUnit fixtures. This makes extraction of setup/teardown behavior (as well as invoking the system under test) much simpler.") (license license:expat))) (define-public go-go-etcd-io-gofail (package (name "go-go-etcd-io-gofail") (version "0.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/etcd-io/gofail") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0wxjaq1v5w0wjyv84af5cazrmv369i1416ar0dx8r9ag1szcfvpc")))) (build-system go-build-system) (arguments (list #:import-path "go.etcd.io/gofail" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-examples (lambda* (#:key import-path #:allow-other-keys) (delete-file-recursively (string-append "src/" import-path "/examples"))))))) (native-inputs (list go-github-com-stretchr-testify)) (home-page "https://pkg.go.dev/go.etcd.io/gofail") (synopsis "Failpoints for go") (description "This package provides an implementation of @url{http://www.freebsd.org/cgi/man.cgi?query=fail,failpoints} for Golang.") (license license:asl2.0))) (define-public go-golang-org-sql-mock (package (name "go-golang-org-sql-mock") (version "1.5.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/DATA-DOG/go-sqlmock") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1vpvdx9hwmx9gm27aq5r5219xpaxz0gy4q1iqskk4saz05bspn0f")))) (build-system go-build-system) (arguments (list #:import-path "github.com/DATA-DOG/go-sqlmock" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-examples (lambda* (#:key import-path #:allow-other-keys) (delete-file-recursively (string-append "src/" import-path "/examples"))))))) (home-page "https://github.com/DATA-DOG/go-sqlmock") (synopsis "Mock library implementing @code{sql/driver}") (description "This library simulates SQL-driver behavior in tests without requiring a real database connection.") (license license:expat))) (define-public go-golang-org-x-lint (let ((commit "83fdc39ff7b56453e3793356bcff3070b9b96445") (revision "0")) (package (name "go-golang-org-x-lint") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://go.googlesource.com/lint") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0ms3rs5hvpnm9bxbr5f9743i7hn2bbmqdmvzxq6nmi0f24ypv1l3")))) (build-system go-build-system) (arguments '(#:import-path "golang.org/x/lint" #:tests? #f)) ;; TODO: Fix tests (propagated-inputs (list go-golang-org-x-tools)) (home-page "https://golang.org/x/lint") (synopsis "Linter for Go source code") (description "This is a linter for Go source code. Unlike gofmt, it doesn't reformat the source code, it only prints out style mistakes.") (license license:bsd-3)))) (define-public go-gopkg-in-check-v1 (package (name "go-gopkg-in-check-v1") (version "1.0.0-20201130134442-10cb98267c6c") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/go-check/check") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "1jwxndf8rsyx0fgrp47d99rp55yzssmryb92jfj3yf7zd8rjjljn")))) (build-system go-build-system) (arguments (list #:import-path "gopkg.in/check.v1" #:phases #~(modify-phases %standard-phases (replace 'check (lambda* (#:key inputs #:allow-other-keys #:rest args) (unless ;; The tests fail when run with gccgo. (false-if-exception (search-input-file inputs "/bin/gccgo")) (apply (assoc-ref %standard-phases 'check) args))))))) (propagated-inputs (list go-github-com-kr-pretty)) (home-page "https://gopkg.in/check.v1") (synopsis "Test framework for the Go language") (description "This package provides a test library for the Go language.") (license license:bsd-2))) (define-public go-gopkg-in-go-playground-assert-v1 (package (name "go-gopkg-in-go-playground-assert-v1") (version "1.2.1") (home-page "https://github.com/go-playground/assert") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1h4amgykpa0djwi619llr3g55p75ia0mi184h9s5zdl8l4rhn9pm")))) (build-system go-build-system) (arguments '(#:import-path "gopkg.in/go-playground/assert.v1")) (synopsis "Basic assertion library used alongside native Go testing") (description "This package provides basic assertions along with building blocks for custom assertions to be used alongside native Go testing.") (license license:expat))) (define-public go-github-com-go-playground-assert-v2 (package (inherit go-gopkg-in-go-playground-assert-v1) (name "go-github-com-go-playground-assert-v2") (version "2.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/go-playground/assert") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "13mb07dxhcy9ydqbracnrpfj682g6sazjpm56yrlbn2jc1yfy44c")))) (arguments (list #:import-path "github.com/go-playground/assert/v2")))) (define-public go-github-com-warpfork-go-testmark (package (name "go-github-com-warpfork-go-testmark") (version "0.12.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/warpfork/go-testmark") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "06v2x3c5qgbj585a2abksr3hgvgdx61j153rjarqi9cvvzwh1xpr")))) (build-system go-build-system) (arguments (list #:import-path "github.com/warpfork/go-testmark")) (home-page "https://github.com/warpfork/go-testmark") (synopsis "Parser for @code{testmark} format") (description "@code{go-testmark} is a library to parse, patch data and test fixtures from Markdown files, using the @url{https://github.com/warpfork/go-testmark?tab=readme-ov-file#what-is-the-testmark-format, testmark} format, which itself is a subset of Markdown format.") (license (list license:asl2.0 license:expat)))) (define-public go-github-com-warpfork-go-wish (package (name "go-github-com-warpfork-go-wish") (version "0.0.0-20220906213052-39a1cc7a02d0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/warpfork/go-wish") (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "0rqbxmqwzy1q2zwy3mszp0li0pg8zzh3j9l8wlzr6p1pq2idallq")) (patches (search-patches "go-github-com-warpfork-go-wish-fix-tests.patch")))) (build-system go-build-system) (arguments (list #:import-path "github.com/warpfork/go-wish")) (home-page "https://github.com/warpfork/go-wish") (synopsis "Test assertions for Golang") (description "@code{wish} is a test assertion library for Golang, designed to gracefully enhance standard library testing package and behaviors of the @command{go test} command.") (license license:expat))) (define-public go-go-uber-org-goleak (package (name "go-go-uber-org-goleak") (version "1.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/uber-go/goleak") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "14rvkxh3znp9jzbdjqdkrly3zfg3rmhgg5845biqqrq17w8jvv5s")))) (build-system go-build-system) (arguments (list #:import-path "go.uber.org/goleak")) (native-inputs (list go-github-com-stretchr-testify)) (home-page "https://pkg.go.dev/go.uber.org/goleak") (synopsis "Goroutine leak detector") (description "Go package to verify that there are no unexpected goroutines running at the end of a test.") (license license:expat))) (define-public go-go-uber-org-mock (package (name "go-go-uber-org-mock") (version "0.4.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/uber-go/mock") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0mz1cy02m70mdh7hyaqks8bkh9iyv4jgj6h4psww52nr3b9pnyyy")))) (build-system go-build-system) (arguments (list ;; XXX: The project contains subdirectory which complicate it's testing ;; and it does not produce any binary. #:tests? #f #:import-path "go.uber.org/mock" #:phases #~(modify-phases %standard-phases (delete 'build)))) (propagated-inputs (list go-golang-org-x-mod go-golang-org-x-tools)) (home-page "https://pkg.go.dev/go.uber.org/mock") (synopsis "Mocking framework for the Golang") (description "This package provides a mocking framework which integrates well with built-in @code{testing} package, but can be used in other contexts too.") (license license:asl2.0))) (define-public go-honnef-co-go-tools (package (name "go-honnef-co-go-tools") (version "0.4.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/dominikh/go-tools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1n58skq2a0vhsgdfdkyqi00d3vv13kiw9b4mxx6xfyb6ysrdy7d1")))) (build-system go-build-system) (arguments (list #:import-path "honnef.co/go/tools" #:phases #~(modify-phases %standard-phases ;; XXX: Workaround for go-build-system's lack of Go modules support. (delete 'build) (replace 'check (lambda* (#:key tests? import-path #:allow-other-keys) (when tests? (with-directory-excursion (string-append "src/" import-path) (invoke "go" "test" "-v" "./...")))))))) (propagated-inputs (list go-github-com-burntsushi-toml go-golang-org-x-exp-typeparams go-golang-org-x-mod go-golang-org-x-tools)) (home-page "https://staticcheck.dev/") (synopsis "Staticcheck advanced Go linter library") (description "This package provides the Go source code for the @code{go-staticcheck} advanced Go linter.") (license license:expat))) (define-public go-pgregory-net-rapid (package (name "go-pgregory-net-rapid") (version "1.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/flyingmutant/rapid") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1alyhcbdq6113sfymx7xxmxpcbgvkaipsn15cgjrcqrx8ks1hm5i")))) (build-system go-build-system) (arguments (list #:import-path "pgregory.net/rapid" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-failing-tests (lambda* (#:key import-path #:allow-other-keys) (with-directory-excursion (string-append "src/" import-path) ;; Remove test file failing on go-1.21, see ;; <https://github.com/flyingmutant/rapid/issues/68>. (delete-file "strings_example_test.go"))))))) (home-page "https://pgregory.net/rapid/") (synopsis "Go property-based testing library") (description "@code{Rapid} is a Go library for property-based testing. Rapid checks that properties you define hold for a large number of automatically generated test cases. If a failure is found, rapid automatically minimizes the failing test case before presenting it. Features: @itemize @item imperative Go API with type-safe data generation using generics @item data generation biased to explore \"small\" values and edge cases more thoroughly @item fully automatic minimization of failing test cases @item persistence and automatic re-running of minimized failing test cases @item support for state machine (\"stateful\" or \"model-based\") testing @item no dependencies outside the Go standard library @end itemize") (license license:mpl2.0))) ;;; ;;; Executables: ;;; (define-public go-ginkgo (package (inherit go-github-com-onsi-ginkgo-v2) (name "ginkgo") (arguments (list #:import-path "github.com/onsi/ginkgo/ginkgo" #:unpack-path "github.com/onsi/ginkgo" #:install-source? #f)) (description (string-append (package-description go-github-com-onsi-ginkgo-v2) " This package provides an command line interface (CLI) tool.")))) (define-public go-keyify (package (inherit go-honnef-co-go-tools) (name "go-keyify") (arguments `(#:import-path "honnef.co/go/tools/cmd/keyify" #:unpack-path "honnef.co/go/tools" #:install-source? #f)) (synopsis "Transform an unkeyed struct literal into a keyed one in Go") (description "This package turns unkeyed struct literals (@code{T{1, 2, 3}}) into keyed ones (@code{T{A: 1, B: 2, C: 3}}) in Go."))) (define-public go-pprof (package (inherit go-github-com-google-pprof) (name "go-pprof") (arguments (list #:install-source? #f #:import-path "github.com/google/pprof")) (description (string-append (package-description go-github-com-google-pprof) " This package provides an command line interface (CLI) tool.")))) (define-public go-staticcheck (package (inherit go-honnef-co-go-tools) (name "go-staticcheck") (arguments `(#:import-path "honnef.co/go/tools/cmd/staticcheck" #:unpack-path "honnef.co/go/tools" #:install-source? #f)) (synopsis "Staticcheck advanced Go linter") (description "Staticcheck is a state of the art linter for the Go programming language. Using static analysis, it finds bugs and performance issues, offers simplifications, and enforces style rules."))) (define-public go-structlayout (package (inherit go-honnef-co-go-tools) (name "go-structlayout") (arguments `(#:import-path "honnef.co/go/tools/cmd/structlayout" #:unpack-path "honnef.co/go/tools" #:install-source? #f)) (synopsis "Display the layout (field sizes and padding) of structs in Go") (description "This package prints the layout of a struct in Go, which is the byte offset and size of each field, respecting padding. This information is printed in human-readable form by default, or as JSON with the @code{-json} flag."))) (define-public go-structlayout-optimize (package (inherit go-honnef-co-go-tools) (name "go-structlayout-optimize") (arguments `(#:import-path "honnef.co/go/tools/cmd/structlayout-optimize" #:unpack-path "honnef.co/go/tools" #:install-source? #f)) (synopsis "Reorder struct fields to minimize the amount of padding in Go") (description "This package reads @code{go-structlayout} JSON on stdin and reorders fields to minimize the amount of padding. It can emit JSON to feed into @code{go-structlayout-pretty}."))) (define-public go-structlayout-pretty (package (inherit go-honnef-co-go-tools) (name "go-structlayout-pretty") (arguments `(#:import-path "honnef.co/go/tools/cmd/structlayout-pretty" #:unpack-path "honnef.co/go/tools" #:install-source? #f)) (synopsis "Format the output of go-structlayout with ASCII art in Go") (description "This package takes @code{go-structlayout}-like JSON and prints an ASCII fraphic representing the memory layout."))) ;;; ;;; 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 ;;; functionality or similar names. ;;;