;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Efraim Flashner ;;; Copyright © 2016 Mckinley Olsen ;;; Copyright © 2016, 2017, 2019 Alex Griffin ;;; Copyright © 2016 David Craven ;;; Copyright © 2016, 2017, 2019, 2020 Ludovic Courtès ;;; Copyright © 2016, 2017 José Miguel Sánchez García ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2017 Kei Kebreau ;;; Copyright © 2017, 2018, 2019 Ricardo Wurmus ;;; Copyright © 2017 Petter ;;; Copyright © 2018 Hartmut Goebel ;;; Copyright © 2018 Arun Isaac ;;; Copyright © 2018 Gabriel Hondet ;;; Copyright © 2019 Rutger Helling ;;; Copyright © 20
aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright © 2012-2018, 2020-2022 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015 Mathieu Lirzin <mthl@openmailbox.org>
;;; Copyright © 2014 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
;;; Copyright © 2015, 2017, 2018 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2016 David Thompson <davet@gnu.org>
;;; Copyright © 2017 Nikita <nikita@n0.is>
;;; Copyright © 2017, 2019, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Pierre-Moana Levesque <pierre.moana.levesque@gmail.com>
;;; Copyright © 2020, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2023 Wojtek Kosior <koszko@koszko.org>
;;; Additions and modifications by Wojtek Kosior are additionally
;;; dual-licensed under the Creative Commons Zero v1.0.
;;;
;;; 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 autotools)
  #:use-module (guix licenses)
  #:use-module (gnu packages)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages python)
  #:use-module (gnu packages m4)
  #:use-module (gnu packages man)
  #:use-module (gnu packages bash)
  #:use-module (guix utils)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix gexp)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system trivial)
  #:use-module (ice-9 match)
  #:export (autoconf-wrapper))

(define-public autoconf-2.69
  (package
    (name "autoconf")
    (version "2.69")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://gnu/autoconf/autoconf-"
                           version ".tar.xz"))
       (sha256
        (base32
         "113nlmidxy9kjr45kg9x3ngar4951mvag1js2a3j8nxcz34wxsv4"))))
    (build-system gnu-build-system)
    (inputs
     (list bash-minimal m4 perl))
    (native-inputs
     (list perl m4))
    (arguments
     (list
      ;; XXX: testsuite: 209 and 279 failed.  The latter is an impurity.  It
      ;; should use our own "cpp" instead of "/lib/cpp".
      #:tests? #f
      #:phases
      #~(modify-phases %standard-phases
          #$@(if (%current-target-system)
                 #~((add-after 'install 'patch-non-shebang-references
                      (lambda* (#:key build inputs #:allow-other-keys)
                        ;; `patch-shebangs' patches shebangs only, and the Perl
                        ;; scripts use a re-exec feature that references the
                        ;; build hosts' perl.  Also, BASH and M4 store references
                        ;; hide in the scripts.
                        (let ((bash (dirname (dirname
                                              (search-input-file inputs "bin/bash"))))
                              (m4 (dirname (dirname
                                            (search-input-file inputs "bin/m4"))))
                              (perl (dirname (dirname
                                              (search-input-file inputs "bin/perl"))))
                              (store-directory (%store-directory)))
                          (substitute* (find-files (string-append #$output "/bin"))
                            (((string-append store-directory "/[^/]*-bash-[^/]*"))
                             bash)
                            (((string-append store-directory "/[^/]*-m4-[^/]*"))
                             m4)
                            (((string-append store-directory "/[^/]*-perl-[^/]*"))
                             perl))))))
                 '())
          (add-after 'install 'unpatch-shebangs
            (lambda _
              ;; Scripts that "autoconf -i" installs (config.guess,
              ;; config.sub, and install-sh) must use a regular shebang
              ;; rather than a reference to the store.  Restore it.
              (let ((build-aux (string-append #$output
                                              "/share/autoconf/build-aux")))
                (substitute* (find-files build-aux)
                  (("^#!.*/bin/sh") "#!/bin/sh"))))))))
    (home-page "https://www.gnu.org/software/autoconf/")
    (synopsis "Create source code configuration scripts")
    (description
     "Autoconf offers the developer a robust set of M4 macros which expand
into shell code to test the features of Unix-like systems and to adapt
automatically their software package to these systems.  The resulting shell
scripts are self-contained and portable, freeing the user from needing to
know anything about Autoconf or M4.")
    (license gpl3+))) ; some files are under GPLv2+

;; This is the renaissance version, which is not widely supported yet.
(define-public autoconf-2.71
  (package
    (inherit autoconf-2.69)
    (version "2.71")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://gnu/autoconf/autoconf-"
                           version ".tar.xz"))
       (sha256
        (base32
         "197sl23irn6s9pd54rxj5vcp5y8dv65jb9yfqgr2g56cxg7q6k7i"))))
    (arguments
     (substitute-keyword-arguments (package-arguments autoconf-2.69)
       ((#:tests? _ #f)
        ;; FIXME: To run the test suite, fix all the instances where scripts
        ;; generates "#! /bin/sh" shebangs.
        #f)
       ((#:phases phases #~%standard-phases)
        #~(modify-phases #$phases
            (add-before 'check 'prepare-tests
              (lambda _
                (for-each patch-shebang
                          (append (find-files "tests"
                                              (lambda (file stat)
                                                (executable-file? file)))
                                  (find-files "bin"
                                              (lambda (file stat)
                                                (executable-file? file)))))))))))))

(define-public autoconf autoconf-2.69)

(define-public autoconf-2.68
  (package (inherit autoconf)
    (version "2.68")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/autoconf/autoconf-"
                          version ".tar.xz"))
      (sha256
       (base32
        "1fjm21k2na07f3vasf288a0zx66lbv0hd3l9bvv3q8p62s3pg569"))))))

(define-public autoconf-2.64
  (package (inherit autoconf)
    (version "2.64")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/autoconf/autoconf-"
                          version ".tar.xz"))
      (sha256
       (base32
        "0j3jdjpf5ly39dlp0bg70h72nzqr059k0x8iqxvaxf106chpgn9j"))))))

(define-public autoconf-2.13
  ;; GNU IceCat 52.x requires autoconf-2.13 to build!
  (package (inherit autoconf)
    (version "2.13")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/autoconf/autoconf-"
                          version ".tar.gz"))
      (sha256
       (base32
        "07krzl4czczdsgzrrw9fiqx35xcf32naf751khg821g5pqv12qgh"))))
    (arguments
     `(#:tests? #f
       #:phases
       ;; The 'configure' script in autoconf-2.13 can't cope with "SHELL=" and
       ;; "CONFIG_SHELL=" arguments, so we set them as environment variables
       ;; and pass a simplified set of arguments.
       (modify-phases %standard-phases
         (replace 'configure
           (lambda* (#:key build inputs outputs #:allow-other-keys)
             (let ((bash (which "bash"))
                   (out  (assoc-ref outputs "out")))
               (setenv "CONFIG_SHELL" bash)
               (setenv "SHELL" bash)
               (invoke bash "./configure"
                       (string-append "--prefix=" out)
                       (string-append "--build=" build))))))))))


(define (make-autoconf-wrapper autoconf)
  "Return a wrapper around AUTOCONF that generates `configure' scripts that
use our own Bash instead of /bin/sh in shebangs.  For that reason, it should
only be used internally---users should not end up distributing `configure'
files with a system-specific shebang."
  (package
    (inherit autoconf)
    (name (string-append (package-name autoconf) "-wrapper"))
    (build-system trivial-build-system)
    (inputs
     (list
      ;; XXX: Kludge to hide the circular dependency.
      (module-ref (resolve-interface '(gnu packages guile))
                  'guile-3.0/pinned)
      autoconf
      bash-minimal))
    (arguments
     (list
      #:modules '((guix build utils))
      #:builder
      #~(begin
          (use-modules (guix build utils))
          (let ((bin      (string-append #$output "/bin"))
                (autoconf (search-input-file %build-inputs "/bin/autoconf"))
                (guile    (search-input-file %build-inputs "/bin/guile"))
                (sh       (search-input-file %build-inputs "/bin/sh"))
                (modules  ((compose dirname dirname dirname)
                           (search-path %load-path
                                        "guix/build/utils.scm"))))
            (mkdir-p bin)

            ;; Symlink all the binaries but `autoconf'.
            (with-directory-excursion bin
              (for-each (lambda (file)
                          (unless (string=? (basename file) "autoconf")
                            (symlink file (basename file))))
                        (find-files (dirname autoconf) ".*")))

            ;; Add an `autoconf' binary that wraps the real one.
            (call-with-output-file (string-append bin "/autoconf")
              (lambda (port)
                ;; Shamefully, Guile can be used in shebangs only if a
                ;; single argument is passed (-ds); otherwise it gets
                ;; them all as a single argument and fails to parse them.
                (format port "#!~a
export GUILE_LOAD_PATH=\"~a\"
export GUILE_LOAD_COMPILED_PATH=\"~a\"
exec ~a --no-auto-compile \"$0\" \"$@\"
!#~%"
                        sh modules modules guile)
                (write
                 `(begin
                    (use-modules (guix build utils))
                    (let ((result (apply system* ,autoconf
                                         (cdr (command-line)))))
                      (when (and (file-exists? "configure")
                                 (not (file-exists? "/bin/sh")))
                        ;; Patch regardless of RESULT, because `autoconf
                        ;; -Werror' can both create a `configure' file and
                        ;; return a non-zero exit code.
                        (patch-shebang "configure"))
                      (exit (status:exit-val result))))
                 port)))
            (chmod (string-append bin "/autoconf") #o555)))))

    ;; Do not show it in the UI since it's meant for internal use.
    (properties '((hidden? . #t)))))

;; Only use this package when autoconf is not usable,
;; see <https://issues.guix.gnu.org/46564#1>.
(define-public autoconf-wrapper
  (make-autoconf-wrapper autoconf))

(define-public autoconf-archive
  (package
    (name "autoconf-archive")
    (version "2023.02.20")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/autoconf-archive/autoconf-archive-"
                          version ".tar.xz"))
      (sha256
       (base32
        "0cqsqdnmjdyybzw8wqhwkgs1vh7r5pbw66a6g7sz2a5fg6209m3i"))))
    (build-system gnu-build-system)
    (home-page "https://www.gnu.org/software/autoconf-archive/")
    (synopsis "Collection of freely reusable Autoconf macros")
    (description
     "Autoconf Archive is a collection of over 450 new macros for Autoconf,
greatly expanding the domain of its functionality.  These macros have been
contributed as free software by the community.")
    (license gpl3+)))

(define-public lawrence-boilerplate
  (package
    (name "lawrence-boilerplate")
    (version "0.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://git.koszko.org/lawrence-boilerplate")
                    (commit "8bd8fd7820b84c24c7acd1b12e755ea6b42eda9b")))
              (sha256
               (base32
                "1fh8lisfv6kvk55hmraky7awkcwiqqnin770zldfa9xa5yya7xrq"))))
    (build-system gnu-build-system)
    (native-inputs
     (list autoconf automake))
    (home-page "https://git.koszko.org/lawrence-boilerplate/about")
    (synopsis "Less copy-pasting for Guile autotoolized projects")
    (description "This package provides autoconf macro for generating a
@file{pre-inst-env} script for GNU Guile projects.")
    (license cc0)))

(define-public autobuild
  (package
    (name "autobuild")
    (version "5.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://savannah/autobuild/autobuild-"
                                  version ".tar.gz"))
              (sha256
               (base32
                "0gv7g61ja9q9zg1m30k4snqwwy1kq7b4df6sb7d2qra7kbdq8af1"))))
    (build-system gnu-build-system)
    (inputs (list perl))
    (synopsis "Process generated build logs")
    (description "Autobuild is a package that processes build logs generated
when building software.  Autobuild is primarily focused on packages using
Autoconf and Automake, but can be used with other build systems too.
Autobuild generates an HTML summary file, containing links to each build log.
The summary includes project name, version, build hostname, host type (cross
compile aware), date of build, and indication of success or failure.  The
output is indexed in many ways to simplify browsing.")
    (home-page "https://josefsson.org/autobuild/")
    (license gpl3+)))

(define-public automake
  (package
    (name "automake")
    (version "1.16.5")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://gnu/automake/automake-"
                                  version ".tar.xz"))
              (sha256
               (base32
                "0sdl32qxdy7m06iggmkkvf7j520rmmgbsjzbm7fgnxwxdp6mh7gh"))
              (patches
               (search-patches "automake-skip-amhello-tests.patch"))))
    (build-system gnu-build-system)
    (inputs
     (list autoconf-wrapper bash-minimal perl))
    (native-inputs
     (list autoconf-wrapper perl))
    (native-search-paths
     (list (search-path-specification
            (variable "ACLOCAL_PATH")
            (files '("share/aclocal")))))
    (arguments
     (list
      #:modules '((guix build gnu-build-system)
                  (guix build utils)
                  (srfi srfi-1)
                  (srfi srfi-26)
                  (rnrs io ports))
      #:phases
      #~(modify-phases %standard-phases
          (add-before 'patch-source-shebangs 'patch-tests-shebangs
            (lambda* (#:key native-inputs inputs #:allow-other-keys)
              (let ((sh (search-input-file (or native-inputs inputs) "bin/sh")))
                (substitute* (find-files "t" "\\.(sh|tap)$")
                  (("#![[:blank:]]?/bin/sh")
                   (string-append "#!" sh)))

                ;; Set these variables for all the `configure' runs
                ;; that occur during the test suite.
                (setenv "SHELL" sh)
                (setenv "CONFIG_SHELL" sh))))
          (add-before 'check 'skip-test
            (lambda _
              ;; This test requires 'etags' and fails if it's missing.
              ;; Skip it.
              (substitute* "t/tags-lisp-space.sh"
                (("^required.*" all)
                 (string-append "exit 77\n" all "\n")))))

          #$@(if (%current-target-system)
                 #~((add-after 'install 'patch-non-shebang-references
                      (lambda* (#:key inputs #:allow-other-keys)
                        ;; `patch-shebangs' patches shebangs only, and the Perl
                        ;; scripts use a re-exec feature that references the
                        ;; build hosts' perl.  Also, AUTOCONF and BASH store
                        ;; references hide in the scripts.
                        (let ((autoconf
                               (dirname (dirname
                                         (search-input-file inputs "bin/autoconf"))))
                              (bash
                               (dirname (dirname
                                         (search-input-file inputs "bin/bash"))))
                              (perl
                               (dirname (dirname
                                         (search-input-file inputs "bin/perl"))))
                              (store-directory (%store-directory)))
                          (substitute* (find-files (string-append #$output "/bin"))
                            (((string-append store-directory "/[^/]*-autoconf-[^/]*"))
                             autoconf)
                            (((string-append store-directory "/[^/]*-bash-[^/]*"))
                             bash)
                            (((string-append store-directory "/[^/]*-perl-[^/]*"))
                             perl))))))
                 '())

          ;; Files like `install-sh', `mdate.sh', etc. must use
          ;; #!/bin/sh, otherwise users could leak erroneous shebangs
          ;; in the wild.  See <http://bugs.gnu.org/14201> for an
          ;; example.
          (add-after 'install 'unpatch-shebangs
            (lambda _
              (let ((dir (string-append #$output "/share")))
                (define (starts-with-shebang? file)
                  (equal? (call-with-input-file file
                            (lambda (p)
                              (list (get-u8 p) (get-u8 p))))
                          (map char->integer '(#\# #\!))))

                (for-each (lambda (file)
                            (when (and (starts-with-shebang? file)
                                       (executable-file? file))
                              (format #t "restoring shebang on `~a'~%"
                                      file)
                              (substitute* file
                                (("^#!.*/bin/sh")
                                 "#!/bin/sh")
                                (("^#!.*/bin/env(.*)$" _ args)
                                 (string-append "#!/usr/bin/env"
                                                args)))))
                          (find-files dir ".*"))))))))
    (home-page "https://www.gnu.org/software/automake/")
    (synopsis "Making GNU standards-compliant Makefiles")
    (description
     "Automake the part of the GNU build system for producing
standards-compliant Makefiles.  Build requirements are entered in an
intuitive format and then Automake works with Autoconf to produce a robust
Makefile, simplifying the entire process for the developer.")
    (license gpl2+)))                      ; some files are under GPLv3+

(define-public libtool
  (package
    (name "libtool")
    (version "2.4.7")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://gnu/libtool/libtool-"
                                  version ".tar.xz"))
              (sha256
               (base32
                "0pb3l4x37k6fj1lwnpzws55gi3pxl0hx56jm4bzmbrkw0mzj2zsg"))
              (patches (search-patches "libtool-skip-tests2.patch"
                                       "libtool-grep-compat.patch"))))
    (build-system gnu-build-system)
    (propagated-inputs (list m4))
    (native-inputs
     (list m4
           perl
           ;; XXX: this shouldn't be necessary, but without it test
           ;; 102 fails because it cannot find ltdl/libltdl.la.
           libltdl
           help2man             ; because we modify ltmain.sh
           automake             ; some tests rely on 'aclocal'
           autoconf-wrapper))   ; others on 'autom4te'

    (arguments
     `(;; Libltdl is provided as a separate package, so don't install it here.
       #:configure-flags '("--disable-ltdl-install")

       ;; XXX: There are test failures on mips64el-linux starting from 2.4.4:
       ;; <http://hydra.gnu.org/build/181662>.
       ;; Also, do not run tests when cross compiling
       #:tests? ,(not (or (%current-target-system)
                          (string-prefix? "mips64"
                                          (%current-system))))

       #:phases
       (modify-phases %standard-phases
         (add-before 'check 'pre-check
           (lambda* (#:key inputs native-inputs parallel-tests? #:allow-other-keys)
             ;; Run the test suite in parallel, if possible.
             (setenv "TESTSUITEFLAGS"
                     (string-append
                      "-j"
                      (if parallel-tests?
                        (number->string (parallel-job-count))
                        "1")))
           ;; Patch references to /bin/sh.
           (let ((/bin/sh (search-input-file (or native-inputs inputs) "bin/sh")))
             (substitute* "tests/testsuite"
               (("/bin/sh") /bin/sh)))))
         ;; These files may be copied into source trees by libtoolize,
         ;; therefore they must not point to store file names that would be
         ;; leaked with tarballs generated by make dist.
         (add-after 'install 'restore-build-aux-shebang
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (dir (string-append out "/share/libtool/build-aux")))
               (for-each (lambda (file)
                           (format #t "restoring shebang on `~a'~%" file)
                           (substitute* file
                             (("^#!.*/bin/sh") "#!/bin/sh")))
                         (find-files dir))))))))

    (synopsis "Generic shared library support tools")
    (description
     "GNU Libtool helps in the creation and use of shared libraries, by
presenting a single consistent, portable interface that hides the usual
complexity of working with shared libraries across platforms.")
    (license gpl3+)
    (home-page "https://www.gnu.org/software/libtool/")))

(define-public config
  (let ((revision "1")
        (commit "c8ddc8472f8efcadafc1ef53ca1d863415fddd5f"))
    (package
      (name "config")
      (version (git-version "0.0.0" revision commit)) ;no release tag
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "https://git.savannah.gnu.org/git/config.git/")
                      (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "0x6ycvkmmhhhag97wsf0pw8n5fvh12rjvrck90rz17my4ys16qwv"))))
      (build-system gnu-build-system)
      (arguments
       `(#:phases (modify-phases %standard-phases
                    (add-after 'unpack 'patch-/bin/sh
                      (lambda _
                        (substitute* "testsuite/config-guess.sh"
                          (("#!/bin/sh")
                           (string-append "#!" (which "sh"))))
                        #t))
                    (replace 'build
                      (lambda _
                        (invoke "make" "manpages")))
                    (delete 'configure)
                    (replace 'install
                      (lambda* (#:key outputs #:allow-other-keys)
                        (let* ((out (assoc-ref outputs "out"))
                               (bin (string-append out "/bin"))
                               (man1 (string-append out "/share/man/man1")))
                          (install-file "config.guess" bin)
                          (install-file "config.sub" bin)
                          (install-file "doc/config.guess.1" man1)
                          (install-file "doc/config.sub.1" man1)
                          #t))))))
      (native-inputs
       (list help2man))
      (home-page "https://savannah.gnu.org/projects/config")
      (synopsis "Ubiquitous config.guess and config.sub scripts")
      (description "The `config.guess' script tries to guess a canonical system triple,
and `config.sub' validates and canonicalizes.  These are used as part of
configuration in nearly all GNU packages (and many others).")
      (license gpl2+))))

(define-public libltdl
  ;; This is a libltdl package separate from the libtool package.  This is
  ;; useful because, unlike libtool, it has zero extra dependencies (making it
  ;; readily usable during bootstrap), and it builds very quickly since
  ;; Libtool's extensive test suite isn't run.
  (package
    (name "libltdl")
    (version "2.4.7")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://gnu/libtool/libtool-"
                                  version ".tar.xz"))
              (sha256
               (base32
                "0pb3l4x37k6fj1lwnpzws55gi3pxl0hx56jm4bzmbrkw0mzj2zsg"))))
    (build-system gnu-build-system)
    (arguments
     '(#:configure-flags '("--enable-ltdl-install") ;really install it
       #:phases (modify-phases %standard-phases
                  (add-before 'configure 'change-directory
                    (lambda _ (chdir "libltdl"))))))

    (synopsis "System-independent dlopen wrapper of GNU libtool")
    (description (package-description libtool))
    (home-page (package-home-page libtool))
    (license lgpl2.1+)))

(define-public pyconfigure
  (package
    (name "pyconfigure")
    (version "0.2.3")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://gnu/pyconfigure/pyconfigure-"
                                  version ".tar.gz"))
              (sha256
               (base32
                "0kxi9bg7l6ric39vbz9ykz4a21xlihhh2zcc3297db8amvhqwhrp"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-before 'configure 'patch-python
           (lambda _
             (substitute* "pyconf.in"
               (("/usr/bin/env python") (which "python3")))
             #t)))))
    (inputs
     (list python-3))
    (synopsis "@command{configure} interface for Python-based packages")
    (description
     "GNU pyconfigure provides template files for easily implementing
standards-compliant configure scripts and Makefiles for Python-based packages.
It is designed to work alongside existing Python setup scripts, making it easy
to integrate into existing projects.  Powerful and flexible Autoconf macros
are available, allowing you to easily make adjustments to the installation
procedure based on the capabilities of the target computer.")
    (home-page "https://www.gnu.org/software/pyconfigure/manual/")
    (license
     (fsf-free
      "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"))))
aces") (description "Termbox is a library that provides a minimalistic API which allows the programmer to write text-based user interfaces.") (home-page "https://github.com/nsf/termbox-go") (license license:expat)))) (define-public go-github-com-junegunn-fzf (package (name "go-github-com-junegunn-fzf") (version "0.22.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/junegunn/fzf") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0n0cy5q2r3dm1a3ivlzrv9c5d11awxlqim5b9x8zc85dlr73n35l")))) (build-system go-build-system) (arguments `(#:import-path "github.com/junegunn/fzf")) (inputs `(("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth) ("go-github-com-mattn-go-shellwords" ,go-github-com-mattn-go-shellwords) ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty) ("go-github-com-gdamore-tcell" ,go-github-com-gdamore-tcell) ("go-github-com-saracen-walker" ,go-github-com-saracen-walker) ("go-golang.org-x-sync-errgroup" ,go-golang.org-x-sync-errgroup) ("go-golang-org-x-crypto" ,go-golang-org-x-crypto))) (home-page "https://github.com/junegunn/fzf") (synopsis "Command-line fuzzy-finder") (description "This package provides an interactive command-line filter usable with any list--including files, command history, processes and more.") (license license:expat))) (define-public go-github.com-howeyc-gopass (let ((commit "bf9dde6d0d2c004a008c27aaee91170c786f6db8") (revision "0")) (package (name "go-github.com-howeyc-gopass") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/howeyc/gopass") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "1jxzyfnqi0h1fzlsvlkn10bncic803bfhslyijcxk55mgh297g45")))) (build-system go-build-system) (arguments '(#:import-path "github.com/howeyc/gopass")) (propagated-inputs `(("go-golang-org-x-crypto" ,go-golang-org-x-crypto))) (synopsis "Retrieve password from a terminal or piped input in Go") (description "@code{gopass} is a Go package for retrieving a password from user terminal or piped input.") (home-page "https://github.com/howeyc/gopass") (license license:isc)))) (define-public python-pyte (package (name "python-pyte") (version "0.7.0") (source (origin (method url-fetch) (uri (pypi-uri "pyte" version)) (sha256 (base32 "1an54hvyjm8gncx8cgabz9mkpgjkdb0bkyjlkh7g7f94nr3wnfl7")))) (build-system python-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-after 'unpack 'remove-failing-test ;; TODO: Reenable when the `captured` files required by this test ;; are included in the archive. (lambda _ (delete-file "tests/test_input_output.py") #t))))) (propagated-inputs `(("python-wcwidth" ,python-wcwidth))) (native-inputs `(("python-pytest-runner" ,python-pytest-runner) ("python-pytest" ,python-pytest))) (home-page "https://pyte.readthedocs.io/") (synopsis "Simple VTXXX-compatible terminal emulator") (description "@code{pyte} is an in-memory VTxxx-compatible terminal emulator. @var{VTxxx} stands for a series of video terminals, developed by DEC between 1970 and 1995. The first and probably most famous one was the VT100 terminal, which is now a de-facto standard for all virtual terminal emulators. pyte is a fork of vt102, which was an incomplete pure Python implementation of VT100 terminal.") (license license:lgpl3+))) (define-public python2-pyte (package-with-python2 python-pyte)) (define-public python-blessings (package (name "python-blessings") (version "1.7") (source (origin (method url-fetch) (uri (pypi-uri "blessings" version)) (sha256 (base32 "0z8mgkbmisxs10rz88qg46l1c9a8n08k8cy2iassal2zh16qbrcq")))) (build-system python-build-system) (arguments ;; FIXME: Test suite is unable to detect TTY conditions. `(#:tests? #f)) (native-inputs `(("python-nose" ,python-nose) ("python-six" ,python-six))) (home-page "https://github.com/erikrose/blessings") (synopsis "Python module to manage terminal color, styling, and positioning") (description "Blessings is a pythonic API to manipulate terminal color, styling, and positioning. It provides similar features to curses but avoids some of curses’s limitations: it does not require clearing the whole screen for little changes, provides a scroll-back buffer after the program exits, and avoids styling altogether when the output is redirected to something other than a terminal.") (license license:expat))) (define-public python2-blessings (package-with-python2 python-blessings)) (define-public python-curtsies (package (name "python-curtsies") (version "0.2.11") (source (origin (method url-fetch) (uri (pypi-uri "curtsies" version)) (sha256 (base32 "1vljmw3sy6lrqahhpyg4gk13mzcx3mwhvg8s41698ms3cpgkjipc")))) (build-system python-build-system) (arguments `(#:phases (modify-phases %standard-phases (replace 'check (lambda _ (invoke "nosetests" "-v")))))) (propagated-inputs `(("python-blessings" ,python-blessings) ("python-wcwidth" ,python-wcwidth))) (native-inputs `(("python-mock" ,python-mock) ("python-pyte" ,python-pyte) ("python-nose" ,python-nose))) (home-page "https://github.com/thomasballinger/curtsies") (synopsis "Library for curses-like terminal interaction with colored strings") (description "Curtsies is a Python library for interacting with the terminal. It features string-like objects which carry formatting information, per-line fullscreen terminal rendering, and keyboard input event reporting.") (license license:expat))) (define-public python2-curtsies (package-with-python2 python-curtsies)) (define-public tmate (package (name "tmate") (version "2.4.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tmate-io/tmate") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0x5c31yq7ansmiy20a0qf59wagba9v3pq97mlkxrqxn4n1gcc6vi")))) (build-system gnu-build-system) (inputs `(("libevent" ,libevent) ("libssh" ,libssh) ("msgpack" ,msgpack) ("ncurses" ,ncurses))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) ("pkg-config" ,pkg-config))) (home-page "https://tmate.io/") (synopsis "Terminal sharing application") (description "tmate is a terminal sharing application that allows you to share your terminal with other users over the Internet. tmate is a fork of tmux.") (license license:isc))) (define-public kitty (package (name "kitty") (version "0.16.0") (home-page "https://sw.kovidgoyal.net/kitty/") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/kovidgoyal/kitty") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1bszyddar0g1gdz67h8rd3gbrdhi6ahjg7j14cjiqxm1938z9ajf")) (modules '((guix build utils))) (snippet '(begin ;; patch needed as sphinx-build is used as a python script ;; whereas the guix package uses a bash script launching the ;; python script (substitute* "docs/conf.py" (("(from kitty.constants import str_version)" kitty-imp) (string-append "sys.path.append(\"..\")\n" kitty-imp))) (substitute* "docs/Makefile" (("^SPHINXBUILD[[:space:]]+= (python3.*)$") "SPHINXBUILD = sphinx-build\n")) #t)))) (build-system gnu-build-system) (inputs `(("python" ,python) ("harfbuzz" ,harfbuzz) ("zlib" ,zlib) ("libcanberra" ,libcanberra) ("libpng" ,libpng) ("freetype" ,freetype) ("fontconfig" ,fontconfig) ("pygments" ,python-pygments) ("wayland" ,wayland))) (native-inputs `(("pkg-config" ,pkg-config) ("libxrandr" ,libxrandr) ("libdbus" ,dbus) ("libxcursor" ,libxcursor) ("libxi" ,libxi) ("libxinerama" ,libxinerama) ("libgl1-mesa" ,mesa) ("libxkbcommon" ,libxkbcommon) ("sphinx" ,python-sphinx) ("ncurses" ,ncurses) ;; for tic command ("wayland-protocols" ,wayland-protocols))) (arguments '(#:phases (modify-phases %standard-phases (delete 'configure) ;; Wayland backend requires EGL, which isn't found ;; out-of-the-box for some reason. Hard-code it instead. (add-after 'unpack 'hard-code-libegl (lambda _ (let* ((mesa (assoc-ref %build-inputs "libgl1-mesa")) (libegl (string-append mesa "/lib/libEGL.so.1"))) (substitute* "glfw/egl_context.c" (("libEGL.so.1") libegl))) #t)) (replace 'build (lambda _ (invoke "python3" "setup.py" "linux-package"))) (replace 'check (lambda _ (invoke "python3" "setup.py" "test"))) (add-before 'install 'rm-pycache ;; created python cache __pycache__ are non deterministic (lambda _ (let ((pycaches (find-files "linux-package/" "__pycache__" #:directories? #t))) (for-each delete-file-recursively pycaches) #t))) (replace 'install (lambda _ (let* ((out (assoc-ref %outputs "out")) (obin (string-append out "/bin")) (olib (string-append out "/lib")) (oshare (string-append out "/share"))) (copy-recursively "linux-package/bin" obin) (copy-recursively "linux-package/share" oshare) (copy-recursively "linux-package/lib" olib) #t)))))) (synopsis "Fast, featureful, GPU based terminal emulator") (description "Kitty is a fast and featureful GPU-based terminal emulator: @itemize @item Offloads rendering to the GPU for lower system load and buttery smooth scrolling. Uses threaded rendering to minimize input latency. @item Supports all modern terminal features: graphics (images), unicode, true-color, OpenType ligatures, mouse protocol, focus tracking, bracketed paste and several new terminal protocol extensions. @item Supports tiling multiple terminal windows side by side in different layouts without needing to use an extra program like tmux. @item Can be controlled from scripts or the shell prompt, even over SSH. @item Has a framework for Kittens, small terminal programs that can be used to extend kitty's functionality. For example, they are used for Unicode input, hints, and side-by-side diff. @item Supports startup sessions which allow you to specify the window/tab layout, working directories and programs to run on startup. @item Allows you to open the scrollback buffer in a separate window using arbitrary programs of your choice. This is useful for browsing the history comfortably in a pager or editor. @end itemize") (license license:gpl3+))) (define-public eternalterminal (package (name "eternalterminal") (version "6.0.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/MisterTea/EternalTerminal") (commit (string-append "et-v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "03pdspggqxkmz95qb96pig5x0xw18hy9a7ivszydr32ry6kxxx1h")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DBUILD_TEST=ON") #:phases (modify-phases %standard-phases (add-after 'unpack 'insert-googletests (lambda* (#:key inputs #:allow-other-keys) (let ((tests (assoc-ref inputs "googletest"))) (copy-recursively tests "external/googletest")) #t))))) (inputs `(("gflags" ,gflags) ("libsodium" ,libsodium) ("protobuf" ,protobuf))) (native-inputs `(("googletest" ,(package-source googletest)))) (home-page "https://mistertea.github.io/EternalTerminal/") (synopsis "Remote shell that reconnects without interrupting the session") (description "@dfn{Eternal Terminal} (ET) is a remote shell that automatically reconnects without interrupting the session. ET uses SSH to initialize a secure connection. Unlike SSH sessions, which must be killed and reconnected after a network outage an ET session will survive network outages and IP roaming. ET provides the same core functionality as @command{mosh}, while also supporting native scrolling and @command{tmux} control mode (@code{tmux -CC}).") (license license:asl2.0))) (define-public wterm (package (name "wterm") (version "0.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/majestrate/wterm") (commit "0ae42717c08a85a6509214e881422c7fbe7ecc45"))) (sha256 (base32 "0g4lzmc1w6na81i6hny32xds4xfig4xzswzfijyi6p93a1226dv0")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("fontconfig" ,fontconfig) ("freetype" ,freetype) ("libdrm" ,libdrm) ("libxkbcommon" ,libxkbcommon) ("ncurses" ,ncurses) ("pixman" ,pixman) ("wayland" ,wayland))) (arguments '(#:tests? #f ;; Without -j1 it fails to find file libwld.a. #:parallel-build? #f #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output) (string-append "TERMINFO=" (assoc-ref %outputs "out") "/share/terminfo")) #:phases (modify-phases %standard-phases (delete 'configure) (add-after 'unpack 'terminfo-fix (lambda _ (substitute* "Makefile" (("\ttic .*") "\tmkdir -p $(SHARE_PREFIX)/share/terminfo \ttic -o $(SHARE_PREFIX)/share/terminfo -s wterm.info\n")) #t))))) (native-search-paths (list (search-path-specification (variable "TERMINFO_DIRS") (files '("share/terminfo"))))) (home-page "https://github.com/majestrate/wterm") (synopsis "Terminal emulator for Wayland") (description "wterm is a native Wayland terminal emulator based on an st fork using wld. st is a simple terminal emulator for X originally made by suckless.") (license license:x11))) (define-public alacritty (package (name "alacritty") (version "0.4.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jwilm/alacritty") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "05jcg33ifngpzw2hdhgb614j87ihhhlqgar0kky183rywg0dxikg")) (modules '((guix build utils))) (snippet ;; Don't use a custom location for winit-0.20-alpha6. '(begin (substitute* "Cargo.toml" (("winit .*") "")) #t)))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-clap" ,rust-clap-2) ("rust-log" ,rust-log-0.4) ("rust-time" ,rust-time-0.1) ("rust-env-logger" ,rust-env-logger-0.7) ("rust-serde" ,rust-serde-1) ("rust-serde-yaml" ,rust-serde-yaml-0.8) ("rust-serde-json" ,rust-serde-json-1) ("rust-glutin" ,rust-glutin-0.22) ; adjust 'patch-glutin-libgl-path as needed ("rust-notify" ,rust-notify-4) ("rust-libc" ,rust-libc-0.2) ("rust-unicode-width" ,rust-unicode-width-0.1) ("rust-parking-lot" ,rust-parking-lot-0.9) ("rust-urlocator" ,rust-urlocator-0.1) ("rust-xdg" ,rust-xdg-2.2) ("rust-image" ,rust-image-0.22) ("rust-dirs" ,rust-dirs-2.0) ("rust-x11-dl" ,rust-x11-dl-2) ("rust-winapi" ,rust-winapi-0.3) ("rust-base64" ,rust-base64-0.11) ("rust-bigflags" ,rust-bitflags-1) ("rust-fnv" ,rust-fnv-1) ("rust-mio" ,rust-mio-0.6) ("rust-mio-extras" ,rust-mio-extras-2) ("rust-terminfo" ,rust-terminfo-0.6) ("rust-url" ,rust-url-2.1) ("rust-vte" ,rust-vte-0.3) ("rust-nix" ,rust-nix-0.15) ("rust-miow" ,rust-miow-0.3) ("rust-mio-anonymous-pipes" ,rust-mio-anonymous-pipes-0.1) ("rust-mio-named-pipes" ,rust-mio-named-pipes-0.1) ("rust-signal-hook" ,rust-signal-hook-0.1) ("rust-clipboard-win" ,rust-clipboard-win-2.1) ("rust-objc" ,rust-objc-0.2) ("rust-objc-id" ,rust-objc-id-0.1) ("rust-objc-foundation" ,rust-objc-foundation-0.1) ("rust-x11-clipboard" ,rust-x11-clipboard-0.4) ("rust-smithay-clipboard" ,rust-smithay-clipboard-0.3) ("rust-wayland-client" ,rust-wayland-client-0.23) ("rust-euclid" ,rust-euclid-0.20) ("rust-foreign-types" ,rust-foreign-types-0.5) ("rust-servo-fontconfig" ,rust-servo-fontconfig-0.4) ("rust-freetype-rs" ,rust-freetype-rs-0.23) ("rust-core-foundation" ,rust-core-foundation-0.6) ("rust-core-foundation-sys" ,rust-core-foundation-sys-0.6) ("rust-core-text" ,rust-core-text-13) ("rust-core-graphics" ,rust-core-graphics-0.17) ("rust-dwrote" ,rust-dwrote-0.9) ("rust-winpty-sys" ,rust-winpty-sys-0.4)) #:cargo-development-inputs (("rust-rustc-tools-util" ,rust-rustc-tools-util-0.2) ("rust-gl-generator" ,rust-gl-generator-0.14) ("rust-andrew" ,rust-andrew-0.2) ("rust-smithay-client-toolkit" ,rust-smithay-client-toolkit-0.6) ("rust-embed-resource" ,rust-embed-resource-1.3) ("rust-http-req" ,rust-http-req-0.5) ("rust-zip" ,rust-zip-0.5) ("rust-tempfile" ,rust-tempfile-3) ("rust-named-pipe" ,rust-named-pipe-0.4) ("rust-winapi" ,rust-winapi-0.3)) #:phases (modify-phases %standard-phases (add-after 'configure 'patch-glutin-libgl-path (lambda* (#:key inputs cargo-inputs vendor-dir #:allow-other-keys) (let* ((glutin-name ,(package-name rust-glutin-0.22)) (glutin-version ,(package-version rust-glutin-0.22)) (src-api (string-append glutin-name "-" glutin-version ".tar.gz/src/api/")) (mesa (assoc-ref inputs "mesa"))) (substitute* (string-append vendor-dir "/" src-api "glx/mod.rs") (("libGL.so") (string-append mesa "/lib/libGL.so"))) (substitute* (string-append vendor-dir "/" src-api "egl/mod.rs") (("libEGL.so") (string-append mesa "/lib/libEGL.so"))) #t))) (add-after 'configure 'remove-alacritty-vendor (lambda* (#:key vendor-dir #:allow-other-keys) ;; We don't want Alacritty to be a dependency of itself ;; If we don't delete it from guix-vendor then build will fail ;; because Alacritty has a virtual workspace Cargo.toml. (delete-file-recursively (string-append vendor-dir "/alacritty-" ,version ".tar.xz")) #t)) (replace 'install (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (share (string-append out "/share")) (icons (string-append share "/icons/hicolor/scalable/apps")) (tic (string-append (assoc-ref inputs "ncurses") "/bin/tic")) (man (string-append share "/man/man1")) (alacritty-bin "target/release/alacritty")) ;; Install and wrap the binary. (install-file alacritty-bin bin) (wrap-program (string-append bin "/alacritty") ;; Both libraries are dlopen()d by cargo dependencies above ;; when running Alacritty on pure Wayland. ;; XXX Find out how to patch these at the source. `("LD_LIBRARY_PATH" ":" prefix (,(string-append (assoc-ref inputs "libxkbcommon") "/lib:" (assoc-ref inputs "wayland") "/lib")))) ;; Install man pages. (mkdir-p man) (copy-file "extra/alacritty.man" (string-append man "/alacritty.1")) ;; Install desktop file. (install-file "extra/linux/alacritty.desktop" (string-append share "/applications")) ;; Install icon (mkdir-p icons) (copy-file "extra/logo/alacritty-term.svg" (string-append icons "/Alacritty.svg")) ;; Install terminfo. (mkdir-p (string-append share "/terminfo")) ;; We don't compile alacritty-common entry because ;; it's being used only for inheritance. (invoke tic "-x" "-e" "alacritty,alacritty-direct" "-o" (string-append share "/terminfo/") "extra/alacritty.info") ;; Install completions. (install-file "extra/completions/alacritty.bash" (string-append out "/etc/bash_completion.d")) (install-file "extra/completions/_alacritty" (string-append share "/zsh/site-functions")) (install-file "extra/completions/alacritty.fish" (string-append share "/fish/vendor_completions.d")) #t)))))) (inputs `(("expat" ,expat) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("libx11" ,libx11) ("libxcb" ,libxcb) ("libxcursor" ,libxcursor) ("libxi" ,libxi) ("libxkbcommon" ,libxkbcommon) ("libxrandr" ,libxrandr) ("libxxf86vm" ,libxxf86vm) ("wayland" ,wayland) ("mesa" ,mesa))) (native-inputs `(("cmake" ,cmake) ("ncurses" ,ncurses) ("pkg-config" ,pkg-config) ("python3" ,python))) (home-page "https://github.com/alacritty/alacritty") (synopsis "GPU-accelerated terminal emulator") (description "Alacritty is a GPU-accelerated terminal emulator with a strong focus on simplicity and performance. With such a strong focus on performance, included features are carefully considered and you can always expect Alacritty to be blazingly fast. By making sane choices for defaults, Alacritty requires no additional setup. However, it does allow configuration of many aspects of the terminal. Note that you need support for OpenGL 3.2 or higher.") (license license:asl2.0)))