2014-03-06 20:16:18 +00:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2024-01-23 15:33:54 +00:00
|
|
|
|
;;; Copyright © 2016, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
2021-04-23 14:31:59 +00:00
|
|
|
|
;;; Copyright © 2016, 2021 Ricardo Wurmus <rekado@elephly.net>
|
2016-08-12 09:54:37 +00:00
|
|
|
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
2021-07-16 14:01:49 +00:00
|
|
|
|
;;; Copyright © 2017, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
|
2021-01-01 20:54:52 +00:00
|
|
|
|
;;; Copyright © 2017–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-03-24 06:05:33 +00:00
|
|
|
|
;;; Copyright © 2019 Meiyo Peng <meiyo@riseup.net>
|
2020-02-21 12:35:07 +00:00
|
|
|
|
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
2020-04-04 10:08:07 +00:00
|
|
|
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
2021-03-03 14:57:19 +00:00
|
|
|
|
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
2022-07-03 09:37:35 +00:00
|
|
|
|
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
|
2023-04-15 01:27:04 +00:00
|
|
|
|
;;; Copyright © 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2023-08-07 14:05:39 +00:00
|
|
|
|
;;; Copyright © 2023 gemmaro <gemmaro.dev@gmail.com>
|
2024-04-30 09:39:28 +00:00
|
|
|
|
;;; Copyright © 2024 chris <chris@bumblehead.com>
|
2014-03-06 20:16:18 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; 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 pretty-print)
|
2023-04-03 10:35:33 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix licenses)
|
2020-03-05 09:34:21 +00:00
|
|
|
|
#:use-module (guix git-download)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (guix download)
|
2016-08-12 09:54:37 +00:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2022-09-19 06:57:30 +00:00
|
|
|
|
#:use-module (guix gexp)
|
2018-03-02 00:41:40 +00:00
|
|
|
|
#:use-module (guix utils)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module (gnu packages bison)
|
2020-06-30 15:33:32 +00:00
|
|
|
|
#:use-module (gnu packages boost)
|
2023-04-03 10:31:04 +00:00
|
|
|
|
#:use-module (gnu packages bdw-gc)
|
2020-06-30 15:33:32 +00:00
|
|
|
|
#:use-module (gnu packages compression)
|
2023-04-03 10:31:04 +00:00
|
|
|
|
#:use-module (gnu packages file)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (gnu packages flex)
|
2020-06-30 15:33:32 +00:00
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2014-03-06 20:16:18 +00:00
|
|
|
|
#:use-module (gnu packages gperf)
|
2020-06-30 15:33:32 +00:00
|
|
|
|
#:use-module (gnu packages groff)
|
|
|
|
|
#:use-module (gnu packages gv)
|
2021-04-23 14:31:59 +00:00
|
|
|
|
#:use-module (gnu packages llvm)
|
2016-12-03 15:42:35 +00:00
|
|
|
|
#:use-module (gnu packages lua)
|
|
|
|
|
#:use-module (gnu packages perl)
|
2016-08-12 09:54:37 +00:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2023-08-07 14:05:41 +00:00
|
|
|
|
#:use-module (gnu packages swig)
|
|
|
|
|
#:use-module (gnu packages qt))
|
2014-03-06 20:16:18 +00:00
|
|
|
|
|
|
|
|
|
(define-public a2ps
|
|
|
|
|
(package
|
|
|
|
|
(name "a2ps")
|
2024-03-16 05:49:14 +00:00
|
|
|
|
(version "4.15.6")
|
2017-06-21 14:33:51 +00:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/a2ps/a2ps-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2024-03-16 05:49:14 +00:00
|
|
|
|
"1x5xdy8g5640bs11nsn7n15v5rb5bsvgi32v3lc6j6di3j09vzw7"))
|
2017-06-21 14:33:51 +00:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
;; Remove timestamp from the installed 'README' file.
|
2023-04-03 10:35:33 +00:00
|
|
|
|
#~(begin
|
|
|
|
|
(substitute* "etc/README.in"
|
|
|
|
|
(("@date@")
|
|
|
|
|
"1st of some month, sometime after 1970"))))))
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2023-04-03 10:35:33 +00:00
|
|
|
|
(list
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'skip-failing-tests
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* (list "tests/Makefile.am" "tests/Makefile.in")
|
|
|
|
|
(("(encoding|prolog-2)\\.tst") ""))))
|
|
|
|
|
(add-before 'build 'patch-scripts
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute*
|
|
|
|
|
'("afm/make_fonts_map.sh"
|
|
|
|
|
"tests/defs"
|
|
|
|
|
"tests/backup.tst"
|
|
|
|
|
"tests/styles.tst")
|
|
|
|
|
(("/bin/rm") (which "rm")))))
|
|
|
|
|
(add-before 'check 'patch-test-files
|
|
|
|
|
;; Alternatively, we could unpatch the shebangs in tst files.
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("tests/ps-ref/includeres.ps"
|
|
|
|
|
"tests/gps-ref/includeres.ps")
|
|
|
|
|
(("/usr/local/bin/perl")
|
|
|
|
|
(search-input-file inputs "/bin/perl")))
|
|
|
|
|
;; Some of the reference postscript contain a 'version 3'
|
|
|
|
|
;; string that in inconsistent with the source text in the
|
|
|
|
|
;; tstfiles directory. Erroneous search-and-replace?
|
|
|
|
|
(substitute* '("tests/ps-ref/InsertBlock.ps"
|
|
|
|
|
"tests/gps-ref/InsertBlock.ps"
|
|
|
|
|
"tests/ps-ref/bookie.ps"
|
|
|
|
|
"tests/gps-ref/bookie.ps")
|
|
|
|
|
(("version 3") "version 2"))
|
|
|
|
|
(substitute* '("tests/ps-ref/psmandup.ps"
|
|
|
|
|
"tests/gps-ref/psmandup.ps")
|
|
|
|
|
(("#! */bin/sh")
|
|
|
|
|
(string-append "#!" (which "sh")))))))))
|
2023-04-03 10:31:04 +00:00
|
|
|
|
(native-inputs
|
|
|
|
|
(list gperf groff perl pkg-config))
|
|
|
|
|
(inputs
|
|
|
|
|
(list file gv libgc libpaper psutils))
|
2017-03-29 22:48:16 +00:00
|
|
|
|
(home-page "https://www.gnu.org/software/a2ps/")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(synopsis "Any file to PostScript, including pretty-printing")
|
|
|
|
|
(description
|
|
|
|
|
"GNU a2ps converts almost anything to a PostScript file, ready for
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 04:46:59 +00:00
|
|
|
|
printing. It accomplishes this by being able to delegate files to external
|
2014-03-06 20:16:18 +00:00
|
|
|
|
handlers, such as Groff and Gzip. It handles as many steps as is necessary to
|
|
|
|
|
produce a pretty-printed file. It also includes some extra abilities for
|
2023-04-03 10:35:33 +00:00
|
|
|
|
special cases, such as pretty-printing @samp{-help} output.")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
|
|
|
|
(define-public trueprint
|
|
|
|
|
(package
|
|
|
|
|
(name "trueprint")
|
|
|
|
|
(version "5.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/trueprint/trueprint-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"13rkc0fga10xyf56yy9dnq95zndnfadkhxflnp24skszj21y8jqh"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
;; Must define DIFF_CMD for tests to pass
|
2014-08-22 02:39:18 +00:00
|
|
|
|
'(#:configure-flags '("CPPFLAGS=-DDIFF_CMD=\\\"diff\\\"")))
|
2017-03-29 22:48:16 +00:00
|
|
|
|
(home-page "https://www.gnu.org/software/trueprint/")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(synopsis "Pretty-print C sources and other plain text to PostScript")
|
|
|
|
|
(description
|
|
|
|
|
"GNU Trueprint translates C source code files as PostScript files.
|
|
|
|
|
In addition to the basic source code output, it can also perform diff-marking,
|
|
|
|
|
indentation counting, function and file indices and more.")
|
|
|
|
|
(license gpl2)))
|
|
|
|
|
|
|
|
|
|
(define-public enscript
|
|
|
|
|
(package
|
|
|
|
|
(name "enscript")
|
|
|
|
|
(version "1.6.6")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/enscript/enscript-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1fy0ymvzrrvs889zanxcaxjfcxarm2d3k43c9frmbl1ld7dblmkd"))))
|
|
|
|
|
(build-system gnu-build-system)
|
2017-03-29 22:48:16 +00:00
|
|
|
|
(home-page "https://www.gnu.org/software/enscript/")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(synopsis "Generating PostScript, including pretty-printing")
|
|
|
|
|
(description
|
|
|
|
|
"GNU Enscript is a program to convert ASCII text files to PostScript,
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 12:16:07 +00:00
|
|
|
|
HTML or RTF formats, to be stored in files or sent immediately to a printer.
|
2014-03-06 20:16:18 +00:00
|
|
|
|
It also includes the capability to perform syntax highlighting for several
|
|
|
|
|
different programming languages.")
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(define-public fmt-10
|
2016-08-12 09:54:37 +00:00
|
|
|
|
(package
|
|
|
|
|
(name "fmt")
|
2024-01-17 17:07:14 +00:00
|
|
|
|
(version "10.2.1")
|
2020-06-03 04:44:38 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
2024-01-17 17:07:14 +00:00
|
|
|
|
(base32 "1j8nln7rql2nxkhdlgpmx1c1dp6dyxnar1n5r7sjg0rws6i5289i"))))
|
2016-08-12 09:54:37 +00:00
|
|
|
|
(build-system cmake-build-system)
|
2022-11-03 19:06:55 +00:00
|
|
|
|
(arguments '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
|
|
|
|
|
(native-inputs (list unzip))
|
2020-03-06 15:23:26 +00:00
|
|
|
|
(home-page "https://fmt.dev")
|
2016-08-12 09:54:37 +00:00
|
|
|
|
(synopsis "Small and fast C++ formatting library")
|
2022-11-03 19:06:55 +00:00
|
|
|
|
(description "@code{fmt} (formerly @code{cppformat}) is a formatting
|
|
|
|
|
library for C++. It can be used as a safe alternative to @code{printf} or as
|
|
|
|
|
a fast alternative to @code{IOStreams}.")
|
2016-08-12 09:54:37 +00:00
|
|
|
|
;; The library is bsd-2, but documentation and tests include other licenses.
|
|
|
|
|
(license (list bsd-2 bsd-3 psfl))))
|
|
|
|
|
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(define-public fmt-9
|
|
|
|
|
(package
|
|
|
|
|
(inherit fmt-10)
|
|
|
|
|
(version "9.1.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "15n9yi6xzzs7g9rm87kg8y5yhl2zrqj3bjr845saa63f6swlrsyc"))))))
|
|
|
|
|
|
2022-11-03 19:06:55 +00:00
|
|
|
|
(define-public fmt-8
|
|
|
|
|
(package
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(inherit fmt-9)
|
2022-11-03 19:06:55 +00:00
|
|
|
|
(version "8.1.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0p8f82ijqa57sk72hjf0qviv1wwinmns0p87wiv2v8fvisnqnxr3"))))))
|
|
|
|
|
|
2022-11-03 19:01:00 +00:00
|
|
|
|
(define-public fmt-8.0
|
2022-07-03 09:37:35 +00:00
|
|
|
|
(package
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(inherit fmt-8)
|
2022-07-03 09:37:35 +00:00
|
|
|
|
(version "8.0.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1gqmsk4r93x65cqs8w7zhfiv70w5fv8279nrblggqm4mmdpaa9x6"))))))
|
|
|
|
|
|
2021-06-24 13:23:21 +00:00
|
|
|
|
(define-public fmt-7
|
2022-11-03 19:01:00 +00:00
|
|
|
|
(package
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(inherit fmt-8)
|
2021-06-24 13:23:21 +00:00
|
|
|
|
(version "7.1.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "17sc10hfg087z0s774lnn05wwy3bfzmcv7j448p92pr0s02cb62x"))))))
|
|
|
|
|
|
2022-11-03 19:01:00 +00:00
|
|
|
|
(define-public fmt-6
|
2021-04-23 14:31:59 +00:00
|
|
|
|
(package
|
2023-06-13 18:43:48 +00:00
|
|
|
|
(inherit fmt-7)
|
2021-04-23 14:31:59 +00:00
|
|
|
|
(version "6.1.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
|
|
|
|
|
version "/fmt-" version ".zip"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1s1hxaby5byb07rgmrk4a0q11fxhz7b42khch7sp2qx974y0yrb3"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
2022-11-03 19:01:00 +00:00
|
|
|
|
'(#:tests? #f ; TODO: posix-mock-test segfaults
|
2021-04-23 14:31:59 +00:00
|
|
|
|
#:configure-flags
|
|
|
|
|
'("-DBUILD_SHARED_LIBS=ON"
|
|
|
|
|
"-DCMAKE_CXX_COMPILER=clang++"
|
|
|
|
|
"-DCMAKE_CXX_FLAGS=-stdlib=libc++"
|
|
|
|
|
"-DCMAKE_EXE_LINKER_FLAGS=-lc++abi")
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'set-paths 'adjust-CPLUS_INCLUDE_PATH
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((gcc (assoc-ref inputs "gcc")))
|
|
|
|
|
(setenv "CPLUS_INCLUDE_PATH"
|
|
|
|
|
(string-join
|
2021-07-16 14:01:49 +00:00
|
|
|
|
(cons (search-input-directory inputs "/include/c++/v1")
|
2021-04-23 14:31:59 +00:00
|
|
|
|
;; Hide GCC's C++ headers so that they do not interfere with
|
|
|
|
|
;; the Clang headers.
|
|
|
|
|
(delete (string-append gcc "/include/c++")
|
|
|
|
|
(string-split (getenv "CPLUS_INCLUDE_PATH")
|
|
|
|
|
#\:)))
|
|
|
|
|
":"))
|
|
|
|
|
(format #true
|
|
|
|
|
"environment variable `CPLUS_INCLUDE_PATH' changed to ~a~%"
|
|
|
|
|
(getenv "CPLUS_INCLUDE_PATH"))))))))
|
|
|
|
|
(properties `((hidden? . #true)))
|
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list unzip))
|
2021-04-23 14:31:59 +00:00
|
|
|
|
(inputs
|
|
|
|
|
`(("libcxx" ,libcxx+libcxxabi-6)
|
|
|
|
|
("libcxxabi" ,libcxxabi-6)
|
|
|
|
|
("clang" ,clang-6)))))
|
|
|
|
|
|
2023-06-13 18:43:48 +00:00
|
|
|
|
;; Note: Updating fmt causes some 1000s of rebuilds, so let's have a pinned
|
|
|
|
|
;; version.
|
|
|
|
|
(define-public fmt fmt-9)
|
|
|
|
|
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(define-public source-highlight
|
|
|
|
|
(package
|
|
|
|
|
(name "source-highlight")
|
2020-01-14 17:09:10 +00:00
|
|
|
|
(version "3.1.9")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2023-04-15 01:27:04 +00:00
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "mirror://gnu/src-highlite/source-highlight-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(patches (search-patches "source-highlight-gcc-compat.patch"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"148w47k3zswbxvhg83z38ifi85f9dqcpg7icvvw1cm6bg21x4zrs"))))
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
;; The ctags that comes with emacs does not support the --excmd options,
|
|
|
|
|
;; so can't be used
|
|
|
|
|
(inputs
|
2024-01-23 15:33:54 +00:00
|
|
|
|
(list boost))
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(native-inputs
|
2021-12-13 16:18:24 +00:00
|
|
|
|
(list bison flex))
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(arguments
|
2022-09-19 06:57:30 +00:00
|
|
|
|
(list #:configure-flags
|
|
|
|
|
#~(list (string-append "--with-boost=" (assoc-ref %build-inputs "boost")))
|
2023-04-15 01:27:04 +00:00
|
|
|
|
#:parallel-tests? #f ;There appear to be race conditions
|
2022-09-19 06:57:30 +00:00
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'rename-lesspipe-to-lesspipe.sh.in
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "src/src-hilite-lesspipe.sh.in"
|
|
|
|
|
(("lesspipe") "lesspipe.sh"))))
|
2023-04-15 01:27:04 +00:00
|
|
|
|
(add-before 'build 'skip-doc-directory
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("^SUBDIRS = (.*) doc(.*)$" _ before after)
|
|
|
|
|
(string-append "SUBDIRS = " before
|
|
|
|
|
" " after "\n")))))
|
2022-09-19 06:57:30 +00:00
|
|
|
|
(add-before 'check 'patch-test-files
|
2023-04-15 01:27:04 +00:00
|
|
|
|
(lambda _
|
|
|
|
|
;; Unpatch shebangs in test input so that source-highlight
|
|
|
|
|
;; is still able to infer input language
|
|
|
|
|
(substitute* '("tests/test.sh"
|
|
|
|
|
"tests/test2.sh"
|
|
|
|
|
"tests/test.tcl")
|
|
|
|
|
(((string-append "#! *" (which "sh"))) "#!/bin/sh"))
|
|
|
|
|
;; Initial patching unrecoverably removes whitespace, so
|
|
|
|
|
;; remove it also in the comparison output.
|
|
|
|
|
(substitute* '("tests/test.sh.html"
|
|
|
|
|
"tests/test2.sh.html"
|
|
|
|
|
"tests/test.tcl.html")
|
2024-01-23 15:33:54 +00:00
|
|
|
|
(("#! */bin/sh") "#!/bin/sh")))))))
|
2017-03-29 22:48:16 +00:00
|
|
|
|
(home-page "https://www.gnu.org/software/src-highlite/")
|
2014-03-06 20:16:18 +00:00
|
|
|
|
(synopsis "Produce a document with syntax highlighting from a source file")
|
|
|
|
|
(description
|
|
|
|
|
"GNU source-highlight reads in a source code file and produces an output
|
|
|
|
|
file in which the keywords are highlighted in different colors to designate
|
|
|
|
|
their syntactic role. It supports over 150 different languages and it can
|
|
|
|
|
output to 8 different formats, including HTML, LaTeX and ODF. It can also
|
|
|
|
|
output to ANSI color escape sequences, so that highlighted source code can be
|
|
|
|
|
seen in a terminal.")
|
2016-04-14 20:18:56 +00:00
|
|
|
|
(license gpl3+)
|
|
|
|
|
(properties '((ftp-directory . "/gnu/src-highlite")))))
|
2014-11-26 17:17:13 +00:00
|
|
|
|
|
2016-12-03 15:42:35 +00:00
|
|
|
|
(define-public highlight
|
|
|
|
|
(package
|
|
|
|
|
(name "highlight")
|
2024-04-30 09:39:28 +00:00
|
|
|
|
(version "4.11")
|
2023-08-07 14:05:41 +00:00
|
|
|
|
(outputs (list "out" "gui"))
|
2024-04-30 09:39:28 +00:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://gitlab.com/saalen/highlight")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "0xb9jm7249qnbain4l94nakgxsmia4w4x246dagr669fkmffcdmg"))
|
|
|
|
|
(patches (search-patches "highlight-gui-data-dir.patch"))))
|
2016-12-03 15:42:35 +00:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2024-04-30 09:39:28 +00:00
|
|
|
|
(list
|
|
|
|
|
#:tests? #f ;no tests
|
|
|
|
|
#:make-flags #~(let ((confdir (string-append #$output
|
|
|
|
|
"/share/highlight/config/")))
|
|
|
|
|
(list (string-append "PREFIX=" #$output)
|
|
|
|
|
(string-append "HL_CONFIG_DIR=" confdir)
|
|
|
|
|
(string-append "conf_dir=" confdir)))
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure) ;no configure script
|
|
|
|
|
(add-after 'unpack 'fix-search-for-lua
|
|
|
|
|
(lambda _
|
|
|
|
|
(let ((ver #$(version-major+minor
|
|
|
|
|
(package-version (this-package-input "lua")))))
|
|
|
|
|
(substitute* "src/makefile"
|
|
|
|
|
(("(LUA_PKG_NAME=).*" _ assignment)
|
|
|
|
|
(string-append assignment "lua-" ver "\n")))
|
|
|
|
|
(substitute* "src/gui-qt/highlight.pro"
|
|
|
|
|
(("(PKGCONFIG \\+= lua)" _ assignment)
|
|
|
|
|
(string-append assignment "-" ver)))
|
|
|
|
|
(substitute* "extras/swig/makefile"
|
|
|
|
|
(("lua")
|
|
|
|
|
(string-append "lua-" ver))))))
|
|
|
|
|
(add-after 'build 'build-gui
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(data (string-append out "/share/highlight/"))
|
|
|
|
|
(conf (string-append out "/etc/highlight/"))
|
|
|
|
|
(doc (string-append out "/share/doc/highlight/"))
|
|
|
|
|
(gui (assoc-ref outputs "gui"))
|
|
|
|
|
(gui-data (string-append gui "/share/highlight/")))
|
|
|
|
|
;; modified version of gui task in makefile
|
|
|
|
|
(invoke "make"
|
|
|
|
|
"-C"
|
|
|
|
|
"./src"
|
|
|
|
|
"-f"
|
|
|
|
|
"./makefile"
|
|
|
|
|
(string-append "HL_DATA_DIR=" data)
|
|
|
|
|
(string-append "HL_CONFIG_DIR=" conf)
|
|
|
|
|
(string-append "HL_DOC_DIR=" doc)
|
|
|
|
|
(string-append "GUI_DATA_DIR=" gui-data)
|
|
|
|
|
"gui-qt"))))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(invoke "make" "install"
|
|
|
|
|
(string-append "PREFIX=" out)))))
|
|
|
|
|
(add-after 'install 'install-perl-bindings
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(data (string-append out "/share/highlight/"))
|
|
|
|
|
(conf (string-append out "/etc/highlight/"))
|
|
|
|
|
(perldir (string-append out
|
|
|
|
|
"/lib/perl5/site_perl/"
|
|
|
|
|
#$(package-version
|
|
|
|
|
(this-package-input "perl"))))
|
|
|
|
|
(autodir (string-append perldir
|
|
|
|
|
"/auto/highlight")))
|
|
|
|
|
(with-directory-excursion "extras/swig"
|
|
|
|
|
(invoke "make" "perl"
|
|
|
|
|
(string-append "hl_data_dir=" data)
|
|
|
|
|
(string-append "hl_conf_dir=" conf))
|
|
|
|
|
(invoke "perl" "-I" "." "testmod.pl")
|
|
|
|
|
(install-file "highlight.pm" perldir)
|
|
|
|
|
(install-file "highlight.so" autodir)))))
|
|
|
|
|
(add-after 'install 'install-gui
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((gui (assoc-ref outputs "gui")))
|
|
|
|
|
(mkdir-p (string-append gui "/bin"))
|
|
|
|
|
(invoke "make" "install-gui"
|
|
|
|
|
(string-append "PREFIX=" gui))))))))
|
2023-08-07 14:05:41 +00:00
|
|
|
|
(inputs (list lua boost perl qtbase-5))
|
2023-08-07 14:05:40 +00:00
|
|
|
|
(native-inputs (list pkg-config swig))
|
2024-04-30 09:39:28 +00:00
|
|
|
|
(home-page "http://www.andre-simon.de/doku/highlight/en/highlight.html")
|
2016-12-03 15:42:35 +00:00
|
|
|
|
(synopsis "Convert code to documents with syntax highlighting")
|
2023-08-07 14:05:40 +00:00
|
|
|
|
(description
|
|
|
|
|
"Highlight converts source code to HTML, XHTML, RTF, LaTeX,
|
2016-12-03 15:42:35 +00:00
|
|
|
|
TeX, SVG, BBCode and terminal escape sequences with colored syntax
|
|
|
|
|
highlighting. Language definitions and color themes are customizable.")
|
|
|
|
|
(license gpl3+)))
|