aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015, 2020, 2023 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
;;; Copyright © 2015, 2016, 2017, 2021, 2022 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; Copyright © 2017, 2021 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
;;; Copyright © 2017, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Christine Lemmer-Webber <cwebber@dustycloud.org>
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
;;; Copyright © 2018 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Alex Vong <alexvong1995@gmail.com>
;;; Copyright © 2019, 2022 Marius Bakke <marius@gnu.org>
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
;;; Copyright © 2020, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
;;; Copyright © 2021 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022 Feng Shu <tumashu@163.com>
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
;;; Copyright © 2024 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2024 jgart <jgart@dismail.de>
;;;
;;; 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 backup)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix build-system cmake)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system go)
  #:use-module (guix build-system pyproject)
  #:use-module (guix build-system python)
  #:use-module (guix build-system qt)
  #:use-module (guix download)
  #:use-module (guix gexp)
  #:use-module (guix gexp)
  #:use-module (guix git-download)
  #:use-module (guix packages)
  #:use-module (guix utils)
  #:use-module (gnu packages)
  #:use-module (gnu packages acl)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages base)
  #:use-module (gnu packages bash)
  #:use-module (gnu packages check)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages crypto)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages datastructures)
  #:use-module (gnu packages dbm)
  #:use-module (gnu packages dejagnu)
  #:use-module (gnu packages digest)
  #:use-module (gnu packages ftp)
  #:use-module (gnu packages gettext)
  #:use-module (gnu packages glib)
  #:use-module (gnu packages gnupg)
  #:use-module (gnu packages golang)
  #:use-module (gnu packages golang-build)
  #:use-module (gnu packages golang-crypto)
  #:use-module (gnu packages golang-web)
  #:use-module (gnu packages golang-xyz)
  #:use-module (gnu packages gperf)
  #:use-module (gnu packages gtk)
  #:use-module (gnu packages guile)
  #:use-module (gnu packages guile-xyz)
  #:use-module (gnu packages linux)
  #:use-module (gnu packages mcrypt)
  #:use-module (gnu packages ncurses)
  #:use-module (gnu packages nettle)
  #:use-module (gnu packages networking)
  #:use-module (gnu packages onc-rpc)
  #:use-module (gnu packages pcre)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages pkg-config)
  #:use-module (gnu packages prometheus)
  #:use-module (gnu packages protobuf)
  #:use-module (gnu packages python)
  #:use-module (gnu packages python-build)
  #:use-module (gnu packages python-check)
  #:use-module (gnu packages python-crypto)
  #:use-module (gnu packages python-web)
  #:use-module (gnu packages python-xyz)
  #:use-module (gnu packages qt)
  #:use-module (gnu packages rsync)
  #:use-module (gnu packages ruby)
  #:use-module (gnu packages serialization)
  #:use-module (gnu packages ssh)
  #:use-module (gnu packages time)
  #:use-module (gnu packages tls)
  #:use-module (gnu packages valgrind)
  #:use-module (gnu packages xml))

(define-public duplicity
  (package
    (name "duplicity")
    (version "2.1.4")
    (source
     (origin
      (method git-fetch)
       (uri (git-reference
             (url "https://gitlab.com/duplicity/duplicity")
             (commit (string-append "rel." version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "14x5brpq1l400i9l2hnyqmbn19cc1hnbmj5fn8cs8zzwzbgrfxng"))))
    (build-system python-build-system)
    (native-inputs
     (list gettext-minimal ; for msgfmt
           gobject-introspection
           util-linux ; setsid command, for the tests
           par2cmdline
           python-fasteners
           python-future ; for tests
           python-paramiko
           python-pexpect
           python-pytest
           python-pytest-runner
           python-setuptools-scm
           tzdata-for-tests
           python-mock))
    (propagated-inputs
     (list python-lockfile python-pygobject python-urllib3))
    (inputs
     (list bash-minimal ; to run the wrapped program
           dbus ; dbus-launch (Gio backend)
           librsync
           lftp
           gnupg ; gpg executable needed
           util-linux))     ; for setsid
    (arguments
     (list #:test-target "test"
           #:phases
           #~(modify-phases %standard-phases
               (add-before 'build 'use-store-file-names
                 (lambda* (#:key inputs #:allow-other-keys)
                   (substitute* "duplicity/gpginterface.py"
                     (("self.call = u'gpg'")
                      (string-append "self.call = '"
                                     (search-input-file inputs
                                                        "/bin/gpg")
                                     "'")))
                   (substitute* "duplicity/backends/giobackend.py"
                     (("subprocess.Popen\\(\\[u'dbus-launch'\\]")
                      (string-append "subprocess.Popen([u'"
                                     (search-input-file inputs
                                                        "/bin/dbus-launch") "']")))
                   (substitute* '("testing/functional/__init__.py"
                                  "testing/overrides/bin/lftp")
                     (("/bin/sh")
                      (which "sh")))))
               (add-before 'build 'fix-version
                 (lambda _
                   (substitute* "duplicity/__init__.py"
                     (("\\$version")
                      #$(package-version this-package)))))
               (add-before 'check 'set-up-tests
                 (lambda* (#:key inputs #:allow-other-keys)
                   (setenv "HOME"
                           (getcwd)) ; gpg needs to write to $HOME
                   (setenv "TZDIR" ; some timestamp checks need TZDIR
                           (search-input-directory inputs
                                                   "share/zoneinfo"))
                   ;; Some things respect TMPDIR, others hard-code /tmp, and the
                   ;; defaults don't match up, breaking test_restart.  Fix it.
                   (setenv "TMPDIR" "/tmp")))
               (add-after 'wrap 'gi-wrap
                 (lambda _
                   (let ((prog (string-append #$output "/bin/duplicity")))
                     (wrap-program prog
                       `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH"))))))))))
    (home-page "https://duplicity.gitlab.io/duplicity-web/")
    (synopsis "Encrypted backup using rsync algorithm")
    (description
     "Duplicity backs up directories by producing encrypted tar-format volumes
and uploading them to a remote or local file server.  Because duplicity uses
librsync, the incremental archives are space efficient and only record the
parts of files that have changed since the last backup.  Because duplicity
uses GnuPG to encrypt and/or sign these archives, they will be safe from
spying and/or modification by the server.")
    (license license:gpl2+)))

(define-public par2cmdline
  (package
    (name "par2cmdline")
    (version "0.8.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/Parchive/par2cmdline")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "11mx8q29cr0sryd11awab7y4mhqgbamb1ss77rffjj6in8pb4hdk"))))
    (native-inputs
     (list automake autoconf))
    (build-system gnu-build-system)
    (synopsis "File verification and repair tools")
    (description "Par2cmdline uses Reed-Solomon error-correcting codes to
generate and verify PAR2 recovery files.  These files can be distributed
alongside the source files or stored together with back-ups to protect against
transmission errors or @dfn{bit rot}, the degradation of storage media over
time.
Unlike a simple checksum, PAR2 doesn't merely detect errors: as long as the
damage isn't too extensive (and smaller than the size of the recovery file), it
can even repair them.")
    (home-page "https://github.com/Parchive/par2cmdline")
    (license license:gpl3+)))

(define-public hdup
  (package
    (name "hdup")
    (version "2.0.14")
    (source
     (origin
      (method url-fetch)
      (uri "https://fossies.org/linux/privat/old/hdup-2.0.14.tar.bz2")
      (sha256
       (base32
        "02bnczg01cyhajmm4rhbnc0ja0dd9ikv9fwv28asxh1rlx9yr0b7"))))
    (build-system gnu-build-system)
    (native-inputs (list pkg-config))
    (inputs
     (list glib
           tar
           lzop
           mcrypt
           openssh
           gnupg-1))
    (arguments
     `(#:configure-flags
       `(,(string-append "--sbindir=" (assoc-ref %outputs "out") "/bin"))
       #:tests? #f))
    (home-page (string-append "http://web.archive.org/web/20150925223424/"
                              "http://archive.miek.nl/projects/hdup/index.html"))
    (synopsis "Simple incremental backup tool")
    (description
     "Hdup2 is a backup utility, its aim is to make backup really simple.  The
backup scheduling is done by means of a cron job.  It supports an
include/exclude mechanism, remote backups, encrypted backups and split
backups (called chunks) to allow easy burning to CD/DVD.")
    (license license:gpl2)))

(define-public libarchive
  (package
    (name "libarchive")
    (replacement libarchive/fixed)
    (version "3.6.1")
    (source
     (origin
       (method url-fetch)
       (uri (list (string-append "https://libarchive.org/downloads/libarchive-"
                                 version ".tar.xz")
                  (string-append "https://github.com/libarchive/libarchive"
                                 "/releases/download/v" version "/libarchive-"
                                 version ".tar.xz")))
       (patches (search-patches "libarchive-remove-potential-backdoor.patch"))
       (sha256
        (base32
         "1rj8q5v26lxxr8x4b4nqbrj7p06qvl91hb8cdxi3xx3qp771lhas"))))
    (build-system gnu-build-system)
    (inputs
     (list bzip2
           libxml2
           lzo
           nettle
           xz
           zlib
           `(,zstd "lib")))
    (arguments
     (list
      #:configure-flags #~'("--disable-static")
      #:phases
      #~(modify-phases %standard-phases
          (add-before 'build 'patch-pwd
            (lambda _
              (substitute* "Makefile"
                (("/bin/pwd") (which "pwd")))))
          (replace 'check
            (lambda* (#:key tests? #:allow-other-keys)
              (if tests?
		  ;; XXX: The test_owner_parse, test_read_disk, and
		  ;; test_write_disk_lookup tests expect user 'root' to
		  ;; exist, but the chroot's /etc/passwd doesn't have
		  ;; it.  Turn off those tests.
                  (begin
		    ;; The tests allow one to disable tests matching a globbing pattern.
		    (invoke "make"
			    "libarchive_test"
			    "bsdcpio_test"
			    "bsdtar_test")

		    ;; XXX: This glob disables too much.
		    (invoke "./libarchive_test" "^test_*_disk*")
		    (invoke "./bsdcpio_test" "^test_owner_parse")
		    (invoke "./bsdtar_test"))
                  ;; Tests may be disabled if cross-compiling.
                  (format #t "Test suite not run.~%"))))
          (add-after 'install 'add--L-in-libarchive-pc
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((out     #$output)
                     (lib     (string-append out "/lib"))
                     (nettle  (assoc-ref inputs "nettle"))
                     (libxml2 (assoc-ref inputs "libxml2"))
                     (xz      (assoc-ref inputs "xz"))
                     (zlib    (assoc-ref inputs "zlib"))
                     (zstd    (assoc-ref inputs "zstd"))
                     (bzip2   (assoc-ref inputs "bzip2")))
                ;; Embed absolute references to these inputs to avoid propagation.
                (substitute* (list (string-append lib "/pkgconfig/libarchive.pc")
                                   (string-append lib "/libarchive.la"))
                  (("-lnettle")
                   (string-append "-L" nettle "/lib -lnettle"))
                  (("-lxml2")
                   (string-append "-L" libxml2 "/lib -lxml2"))
                  (("-llzma")
                   (string-append "-L" xz "/lib -llzma"))
                  (("-lz")
                   (string-append "-L" zlib "/lib -lz"))
                  (("-lzstd")
                   (string-append "-L" zstd "/lib -lzstd"))
                  (("-lbz2")
                   (string-append "-L" bzip2 "/lib -lbz2")))))))))
    (home-page "https://libarchive.org/")
    (synopsis "Multi-format archive and compression library")
    (description
     "Libarchive provides a flexible interface for reading and writing
archives in various formats such as tar and cpio.  Libarchive also supports
reading and writing archives compressed using various compression filters such
as gzip and bzip2.  The library is inherently stream-oriented; readers
serially iterate through the archive, writers serially add things to the
archive.  In particular, note that there is currently no built-in support for
random access nor for in-place modification.  This package provides the
@command{bsdcat}, @command{bsdcpio} and @command{bsdtar} commands.")
    (license license:bsd-2)))

(define libarchive/fixed
  (package
    (inherit libarchive)
    (version "3.7.7")
    (source
     (origin
       (method url-fetch)
       (uri (list (string-append "https://libarchive.org/downloads/libarchive-"
                                 version ".tar.xz")
                  (string-append "https://github.com/libarchive/libarchive"
                                 "/releases/download/v" version "/libarchive-"
                                 version ".tar.xz")))
       (sha256
        (base32
         "1vps57mrpqmrk4zayh5g5amqfq7031s5zzkkxsm7r71rqf1wv6l7"))))))

(define-public rdup
  (package
    (name "rdup")
    (version "1.1.15")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/miekg/rdup")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0bzyv6qmnivxnv9nw7lnfn46k0m1dlxcjj53zcva6v8y8084l1iw"))))
    (build-system gnu-build-system)
    (native-inputs
     (list autoconf automake pkg-config
           ;; For tests.
           dejagnu))
    (inputs
     ;; XXX Compiling with nettle (encryption) support requires patching out
     ;; -Werror from GNUmakefile.in.  Then, rdup-tr-{en,de}crypt tests fail:
     ;; free(): invalid pointer
     ;; ** rdup-tr: SIGPIPE received, exiting
     (list glib pcre libarchive mcrypt))
    (arguments
     `(#:parallel-build? #f             ;race conditions
       #:phases
       (modify-phases %standard-phases
         (add-before 'build 'qualify-inputs
           (lambda* (#:key inputs #:allow-other-keys)
             ;; This script is full of pitfalls.  Fix some that particularly
             ;; affect Guix users & leave the rest as reader excercises.
             (substitute* "rdup-simple"
               ;; Use the input ‘mcrypt’, not whatever's in $PATH at run time.
               (("([' ])mcrypt " all delimiter)
                (string-append delimiter (which "mcrypt") " "))
               ;; Avoid frivolous dependency on ‘which’ with a shell builtin.
               (("which") "command -v"))
             #t))
         (add-before 'check 'disable-encryption-tests
           (lambda _
             (for-each delete-file
                       (list "testsuite/rdup/rdup.rdup-tr-crypt.exp"
                             "testsuite/rdup/rdup.rdup-tr-decrypt.exp"
                             "testsuite/rdup/rdup.rdup-tr-encrypt.exp"))
             #t))
         (add-before 'check 'pre-check
           (lambda _
             (setenv "HOME" (getcwd))
             (substitute* "testsuite/rdup/rdup.rdup-up-t-with-file.exp"
               (("/bin/cat") (which "cat")))
             #t)))))
    (home-page "https://github.com/miekg/rdup")
    (synopsis "Provide a list of files to backup")
    (description
     "Rdup is a utility inspired by rsync and the plan9 way of doing backups.
Rdup itself does not backup anything, it only print a list of absolute
file names to standard output.  Auxiliary scripts are needed that act on this
list and implement the backup strategy.")
    (license license:gpl3+)))

(define-public snapraid
  (package
    (name "snapraid")
    (version "12.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/amadvance/snapraid")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0xgvyhyyl2v6azxwzqbpgyln4r2dw34xa8z09116vpkgdgivh36z"))))
    (build-system gnu-build-system)
    (arguments
     (list #:configure-flags
           ;; XXX --enable-valgrind fails with ‘A must-be-redirected function
           ;; whose name matches the pattern: strlen in an object with soname
           ;; matching: ld-linux-x86-64.so.2 was not found […]’; used to work.
           #~(list "--with-blkid")
           #:phases
           #~(modify-phases %standard-phases
               (add-before 'bootstrap 'set-version
                 (lambda _
                   (setenv "VERSION" #$version)
                   (patch-shebang "autover.sh"))))))
    (native-inputs
     (list automake autoconf))
    (inputs
     (list `(,util-linux "lib"))) ; libblkid
    (home-page "https://www.snapraid.it/")
    (synopsis "Efficient backups using parity snapshots across disk arrays")
    (description
     "SnapRAID backs up files stored across multiple storage devices, such as
disk arrays, in an efficient way reminiscent of its namesake @acronym{RAID,
Redundant Array of Independent Disks} level 4.

Instead of creating a complete copy of the data like classic backups do, it
saves space by calculating one or more sets of parity information that's a
fraction of the size.  Each parity set is stored on an additional device the
size of the largest single storage volume, and protects against the loss of any
one device, up to a total of six.  If more devices fail than there are parity
sets, (only) the files they contained are lost, not the entire array.  Data
corruption by unreliable devices can also be detected and repaired.

SnapRAID is distinct from actual RAID in that it operates on files and creates
distinct snapshots only when run.  It mainly targets large collections of big
files that rarely change, like home media centers.  One disadvantage is that
@emph{all} data not in the latest snapshot may be lost if one device fails.  An
advantage is that accidentally deleted files can be recovered, which is not the
case with RAID.

It's also more flexible than true RAID: devices can have different sizes and
more can be added without disturbing others.  Devices that are not in use can
remain fully idle, saving power and producing less noise.")
    (license license:gpl3+)))

(define-public btar
  (package
    (name "btar")
    (version "1.1.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "http://vicerveza.homeunix.net/~viric/soft/btar/"
                           "btar-" version ".tar.gz"))
       (sha256
        (base32
         "0miklk4bqblpyzh1bni4x6lqn88fa8fjn15x1k1n8bxkx60nlymd"))))
    (build-system gnu-build-system)
    (inputs
     (list librsync-0.9))
    (arguments
     `(#:make-flags `("CFLAGS=-fcommon"
                      ,(string-append "PREFIX=" (assoc-ref %outputs "out"))
                      ,(string-append "CC=" ,(cc-for-target)))
       #:tests? #f                      ;test input not distributed
       #:phases
       ;; no configure phase
       (modify-phases %standard-phases
         (delete 'configure))))
    (home-page "http://viric.name/cgi-bin/btar/doc/trunk/doc/home.wiki")
    (synopsis "Tar-compatible archiver")
    (description
     "Btar is a tar-compatible archiver which allows arbitrary compression and
ciphering, redundancy, differential backup, indexed extraction, multicore
compression, input and output serialisation, and tolerance to partial archive
errors.")
    (license license:gpl3+)))

(define-public rdiff-backup
  (package
    (name "rdiff-backup")
    (version "2.2.6")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/rdiff-backup/rdiff-backup/releases/"
                           "download/v" version "/rdiff-backup-" version ".tar.gz"))
       (sha256
        (base32 "1ksqjkqadhxzp83zdfs80dvb494vn9q4anppnwxm3ikb4rbq6xyh"))))
    (build-system python-build-system)
    (native-inputs
     (list python-setuptools-scm))
    (inputs
     (list python python-pyaml librsync))
    (arguments
     `(#:tests? #f))                    ; Tests require root/sudo
    (home-page "https://rdiff-backup.net/")
    (synopsis "Local/remote mirroring+incremental backup")
    (description
     "Rdiff-backup backs up one directory to another, possibly over a network.
The target directory ends up a copy of the source directory, but extra reverse
diffs are stored in a special subdirectory of that target directory, so you
can still recover files lost some time ago.  The idea is to combine the best
features of a mirror and an incremental backup.  Rdiff-backup also preserves
subdirectories, hard links, dev files, permissions, uid/gid ownership,
modification times, extended attributes, acls, and resource forks.  Also,
rdiff-backup can operate in a bandwidth efficient manner over a pipe, like
rsync.  Thus you can use rdiff-backup and ssh to securely back a hard drive up
to a remote location, and only the differences will be transmitted.  Finally,
rdiff-backup is easy to use and settings have sensible defaults.")
    (license license:gpl2+)))

(define-public rsnapshot
  (package
    (name "rsnapshot")
    (version "1.4.5")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "https://github.com/rsnapshot/rsnapshot/releases/download/"
             version "/rsnapshot-" version ".tar.gz"))
       (sha256
        (base32 "0hl2ncld0xkwlnv1cqjmmnld2nlp65alkkdacs11wl95r80mxdqh"))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda _
             (invoke "make" "test"))))))
    (inputs
     (list perl rsync))
    (home-page "https://rsnapshot.org")
    (synopsis "Deduplicating snapshot backup utility based on rsync")
    (description "rsnapshot is a file system snapshot utility based on rsync.
rsnapshot makes it easy to make periodic snapshots of local machines, and
remote machines over SSH.  To reduce the disk space required for each backup,
rsnapshot uses hard links to deduplicate identical files.")
    (license license:gpl2+)))

(define-public libchop
  (package
    (name "libchop")
    (version "0.5.2")
    (source (origin
              (method url-fetch)
              (uri (string-append "mirror://savannah/libchop/libchop-"
                                  version ".tar.gz"))
              (sha256
               (base32
                "0fpdyxww41ba52d98blvnf543xvirq1v9xz1i3x1gm9lzlzpmc2g"))
              (modules '((guix build utils)))
              (snippet
               '(begin
                  ;; Gnulib's <stdio.h> refers to 'gets' for the purposes of
                  ;; warning against its use, but 'gets' is no longer declared
                  ;; in glibc's <stdio.h>.  Remove that warning.
                  (substitute* "lib/stdio.in.h"
                    (("_GL_WARN_ON_USE \\(gets,.*")
                     "\n/* 'gets' is gone, rejoice! */\n"))

                  ;; Include all the libtirpc headers necessary to get the
                  ;; definitions of 'u_int', etc.
                  (substitute* '("src/block-server.c"
                                 "include/chop/block-server.h"
                                 "utils/chop-block-server.c")
                    (("#include <rpc/(.*)\\.h>" _ header)
                     (string-append "#include <rpc/types.h>\n"
                                    "#include <rpc/rpc.h>\n"
                                    "#include <rpc/" header ".h>\n")))))))
    (build-system gnu-build-system)
    (arguments
     '(;; Link against libtirpc.
       #:configure-flags '("LDFLAGS=-ltirpc -Wl,--as-needed")

       #:phases (modify-phases %standard-phases
                  (add-before 'configure 'adjust-configure-script
                    (lambda _
                      ;; Mimic upstream commit
                      ;; 25750ab5ef82fd3cfce5205d5f1ef07b47098091.
                      (substitute* "configure"
                        (("GUILE=(.*)--variable bindir`" _ middle)
                         (string-append "GUILE=" middle
                                        "--variable bindir`/guile")))))
                  (add-before 'build 'set-libtirpc-include-path
                    (lambda* (#:key inputs #:allow-other-keys)
                      ;; Allow <rpc/rpc.h> & co. to be found.
                      (let ((tirpc (string-append (assoc-ref inputs "libtirpc")
                                                  "/include/tirpc")))
                        (if (getenv "CPATH")
                          (setenv "CPATH"
                                  (string-append (getenv "CPATH")
                                                 ":" tirpc))
                          (setenv "CPATH" tirpc)))))
                  (add-before 'check 'adjust-test
                    (lambda _
                      ;; This test uses a weird construct to spawn
                      ;; 'chop-block-server' in the background.  Replace it
                      ;; with something that actually works.
                      (substitute* "tests/utils/block-server"
                        (("chop_fail_if ! chop-block-server")
                         "chop-block-server")
                        (("'&'")
                         "&")))))))
    (native-inputs
     (list guile-2.0 gperf-3.0 ;see <https://bugs.gnu.org/32382>
           pkg-config rpcsvc-proto))           ;for 'rpcgen'
    (inputs
     (list guile-2.0
           util-linux
           libtirpc
           gnutls
           tdb
           bdb
           gdbm
           libgcrypt
           lzo
           bzip2
           zlib))
    (home-page "https://nongnu.org/libchop/")
    (synopsis "Tools & library for data backup and distributed storage")
    (description
     "Libchop is a set of utilities and library for data backup and
distributed storage.  Its main application is @command{chop-backup}, an
encrypted backup program that supports data integrity checks, versioning,
distribution among several sites, selective sharing of stored data, adaptive
compression, and more.  The library itself implements storage techniques such
as content-addressable storage, content hash keys, Merkle trees, similarity
detection, and lossless compression.")
    (license license:gpl3+)))

(define-public borg
  (package
    (name "borg")
    (version "1.4.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "borgbackup" version))
       (sha256
        (base32 "0agdyrmj7yy2vn0qghcpq458v9d09q9jvzzrszz6dyj3aqalak65"))
       (snippet
        #~(begin
            ;; Delete files generated by Cython.  We used to have a regex that
            ;; created the list of generated files but Borg has added new
            ;; non-generated C files that cause the regex to generate the
            ;; wrong list.
            (for-each delete-file
                      '("src/borg/algorithms/checksums.c"
                        "src/borg/chunker.c"
                        "src/borg/compress.c"
                        "src/borg/crypto/low_level.c"
                        "src/borg/hashindex.c"
                        "src/borg/item.c"
                        "src/borg/platform/darwin.c"
                        "src/borg/platform/freebsd.c"
                        "src/borg/platform/linux.c"
                        "src/borg/platform/posix.c"
                        "src/borg/platform/syncfilerange.c"
                        "src/borg/platform/windows.c"))))))
    (build-system python-build-system)
    (arguments
     (list
      #:modules '((srfi srfi-26)        ; for cut
                  (guix build utils)
                  (guix build python-build-system))
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'set-env
            (lambda* (#:key inputs #:allow-other-keys)
              (let ((acl #$(this-package-input "acl"))
                    (openssl #$(this-package-input "openssl"))
                    (lz4 #$(this-package-input "lz4"))
                    (xxhash #$(this-package-input "xxhash"))
                    (zstd #$(this-package-input "zstd")))
                (setenv "BORG_LIBACL_PREFIX" acl)
                (setenv "BORG_OPENSSL_PREFIX" openssl)
                (setenv "BORG_LIBLZ4_PREFIX" lz4)
                (setenv "BORG_LIBXXHASH_PREFIX" xxhash)
                (setenv "BORG_LIBZSTD_PREFIX" zstd))))
          (replace 'check
            (lambda* (#:key inputs outputs tests? #:allow-other-keys)
              (when tests?
                ;; The tests should be run in an empty directory.
                (mkdir-p "tests")
                (with-directory-excursion "tests"
                  (invoke "py.test" "-v" "--pyargs" "borg.testsuite" "-k"
                          (string-append
                           ;; These tests need to write to '/var'.
                           "not test_get_cache_dir "
                           "and not test_get_config_dir "
                           "and not test_get_keys_dir "
                           "and not test_get_security_dir "
                           ;; These tests assume there is a root user in '/etc/passwd'.
                           "and not test_access_acl "
                           "and not test_default_acl "
                           "and not test_get_item_uid_gid "
                           "and not test_create_content_from_command "
                           "and not test_create_content_from_command_with_failed_command "
                           "and not test_create_stdin "
                           ;; We don't need to run benchmarks
                           "and not benchmark "
                           ;; These tests assume the kernel supports FUSE.
                           "and not test_fuse "
                           "and not test_fuse_allow_damaged_files "
                           "and not test_mount_hardlinks "
                           "and not test_readonly_mount "
                           "and not test_fuse_versions_view "
                           "and not test_migrate_lock_alive"))))))
          (add-after 'install 'install-doc
            (lambda _
              (let ((man (string-append #$output "/share/man/man1"))
                    (misc (string-append #$output "/share/doc/borg-"
                                         #$(package-version this-package))))
                (for-each (cut install-file <> misc)
                          '("docs/misc/create_chunker-params.txt"
                            "docs/misc/borg-data-flow.png"
                            "docs/misc/internals-picture.txt"
                            "docs/misc/prune-example.txt"))
                (copy-recursively "docs/man" man))))
          (add-after 'install-doc 'install-shell-completions
            (lambda _
              (let ((etc (string-append #$output "/etc"))
                    (share (string-append #$output "/share")))
                (with-directory-excursion "scripts/shell_completions"
                  (install-file "bash/borg"
                                (string-append etc "/bash_completion.d"))
                  (install-file "zsh/_borg"
                                (string-append share "/zsh/site-functions"))
                  (install-file "fish/borg.fish"
                                (string-append share "/fish/vendor_completions.d")))))))))
    (native-inputs
     (list python-cython python-dateutil python-setuptools-scm python-pytest))
    (inputs
     (list acl
           lz4
           openssl
           ;; This is the latest version of msgpack accepted by 'setup.py'.
           python-msgpack
           ;; FUSE 3 isn't working well, so we stick with FUSE 2 for now:
           ;; <https://issues.guix.gnu.org/53407>
           python-llfuse
           xxhash
           `(,zstd "lib")))
    (synopsis "Deduplicated, encrypted, authenticated and compressed backups")
    (description "Borg is a deduplicating backup program.  Optionally, it
supports compression and authenticated encryption.  The main goal of Borg is to
provide an efficient and secure way to backup data.  The data deduplication
technique used makes Borg suitable for daily backups since only changes are
stored.  The authenticated encryption technique makes it suitable for storing
backups on untrusted computers.")
    (home-page "https://www.borgbackup.org/")
    (license license:bsd-3)))

(define-public wimlib
  (package
    (name "wimlib")
    (version "1.14.1")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://wimlib.net/downloads/"
                                  "wimlib-" version ".tar.gz"))
              (sha256
               (base32
                "0hkgcf3v3hmwck02s0623brdx1ijvk1la0h5mgly1whnaqviajj9"))))
    (build-system gnu-build-system)
    (native-inputs
     (list pkg-config))
    (inputs
     (list fuse libxml2 ntfs-3g openssl))
    (arguments
     `(#:configure-flags
       (list "--disable-static"
             "--enable-test-support")))
    (home-page "https://wimlib.net/")
    (synopsis "WIM file manipulation library and utilities")
    (description "wimlib is a C library and set of command-line utilities for
creating, modifying, extracting, and mounting archives in the Windows Imaging
Format (@dfn{WIM files}).  It can capture and apply WIMs directly from and to
NTFS volumes using @code{ntfs-3g}, preserving NTFS-specific attributes.")
    ;; wimlib is dual-licenced under version 3 or later of either the GPL or
    ;; LGPL, except those files explicitly marked as being released into the
    ;; public domain (CC0) in their headers.
    (license (list license:gpl3+
                   license:lgpl3+
                   license:cc0))))

(define-public dirvish
  (package
    (name "dirvish")
    (version "1.2.1")
    (build-system gnu-build-system)
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "http://dirvish.org/dirvish-" version ".tgz"))
              (sha256
               (base32
                "1kbxa1irszp2zw8hd5qzqnrrzb4vxfivs1vn64yxnj0lak1jjzvb"))))
    (arguments
     `(#:modules ((ice-9 match) (ice-9 rdelim)
                  ,@%default-gnu-modules)
       #:phases
       ;; This mostly mirrors the steps taken in the install.sh that ships
       ;; with dirvish, but simplified because we aren't prompting interactively
       (modify-phases %standard-phases
         (delete 'configure)
         (delete 'build)
         (delete 'check)
         (replace 'install
           (lambda* (#:key inputs outputs #:allow-other-keys)
             ;; These are mostly the same steps the install.sh that comes with
             ;; dirvish does
             (let* (;; Files we'll be copying
                    (executables
                     '("dirvish" "dirvish-runall"
                       "dirvish-expire" "dirvish-locate"))
                    (man-pages
                     '(("dirvish" "8") ("dirvish-runall" "8")
                       ("dirvish-expire" "8") ("dirvish-locate" "8")
                       ("dirvish.conf" "5")))

                    (output-dir
                     (assoc-ref outputs "out"))

                    ;; Just a default... not so useful on Guix Systems though.
                    ;; You probably want a service with file(s) to point to.
                    (confdir "/etc/dirvish")

                    (perl (search-input-file inputs "/bin/perl"))
                    (loadconfig.pl (call-with-input-file "loadconfig.pl"
                                     read-string)))


               (define (write-pl filename)
                 (define pl-header
                   (string-append "#!" perl "\n\n"
                                  "$CONFDIR = \"" confdir "\";\n\n"))
                 (define input-file-location
                   (string-append filename ".pl"))
                 (define target-file-location
                   (string-append output-dir "/bin/" filename ".pl"))
                 (define text-to-write
                   (string-append pl-header
                                  (call-with-input-file input-file-location
                                    read-string)
                                  "\n" loadconfig.pl))
                 (with-output-to-file target-file-location
                   (lambda ()
                     (display text-to-write)))
                 (chmod target-file-location #o755)
                 (wrap-program target-file-location
                   `("PERL5LIB" ":" prefix
                     ,(map (lambda (l) (string-append (assoc-ref %build-inputs l)
                                                      "/lib/perl5/site_perl"))
                           '("perl-libtime-period"
                             "perl-libtime-parsedate")))))

               (define write-man
                 (match-lambda
                   ((file-base man-num)
                    (let* ((filename
                            (string-append file-base "." man-num))
                           (output-path
                            (string-append output-dir
                                           "/share/man/man" man-num
                                           "/" filename)))
                      (copy-file filename output-path)))))

               ;; Make directories
               (mkdir-p (string-append output-dir "/bin/"))
               (mkdir-p (string-append output-dir "/share/man/man8/"))
               (mkdir-p (string-append output-dir "/share/man/man5/"))

               ;; Write out executables
               (for-each write-pl executables)
               ;; Write out man pages
               (for-each write-man man-pages)))))))
    (inputs
     (list bash-minimal perl rsync perl-libtime-period perl-libtime-parsedate))
    (home-page "http://dirvish.org/")
    (synopsis "Fast, disk based, rotating network backup system")
    (description
     "With dirvish you can maintain a set of complete images of your
file systems with unattended creation and expiration.  A dirvish backup vault
is like a time machine for your data.")
    (license (license:fsf-free "file://COPYING"
                               "Open Software License 2.0"))))

(define-public restic
  (package
    (name "restic")
    (version "0.9.6")
    ;; TODO Try packaging the bundled / vendored dependencies in the 'vendor/'
    ;; directory.
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://github.com/restic/restic/releases/download/"
                    "v" version "/restic-" version ".tar.gz"))
              (file-name (string-append name "-" version ".tar.gz"))
              (sha256
               (base32
                "1zmh42aah32ah8w5n6ilz9bci0y2xrf8p7qshy3yf1lzm5gnbj0w"))
              (patches
               (search-patches "restic-0.9.6-fix-tests-for-go1.15.patch"))))
    (build-system go-build-system)
    (arguments
     `(;; XXX: Tests failed on a newer version of Golang, newer version of
       ;; restic does not provide vendor folder any longer which means - a
       ;; long way of packaging missing inputs.
       #:go ,go-1.17
       #:import-path "github.com/restic/restic"
      ;; We don't need to install the source code for end-user applications.
       #:install-source? #f
       #:phases
       (modify-phases %standard-phases
         (replace 'build
           (lambda* (#:key inputs #:allow-other-keys)
             (with-directory-excursion "src/github.com/restic/restic"
               ;; Disable 'restic self-update'.  It makes little sense in Guix.
               (substitute* "build.go" (("selfupdate") ""))
               (setenv "HOME" (getcwd)) ; for $HOME/.cache/go-build
               (invoke "go" "run" "build.go"))))

         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (when tests?
               (with-directory-excursion "src/github.com/restic/restic"
                 ;; Disable FUSE tests.
                 (setenv "RESTIC_TEST_FUSE" "0")
                 (invoke "go" "run" "build.go" "--test")))))

         (replace 'install
           (lambda* (#:key outputs #:allow-other-keys)
             (let ((out (assoc-ref outputs "out"))
                   (src "src/github.com/restic/restic"))
               (install-file (string-append src "/restic")
                             (string-append out "/bin"))
               #t)))

         (add-after 'install 'install-docs
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (man "/share/man")
                    (man-section (string-append man "/man"))
                    (src "src/github.com/restic/restic/doc/man/"))
               ;; Install all the man pages to "out".
               (for-each
                 (lambda (file)
                   (install-file file
                                 (string-append out man-section
                                                (string-take-right file 1))))
                 (find-files src "\\.[1-9]"))
               #t)))

         (add-after 'install-docs 'install-shell-completion
           (lambda* (#:key outputs #:allow-other-keys)
             (let* ((out (assoc-ref outputs "out"))
                    (bin (string-append out "/bin"))
                    (etc (string-append out "/etc"))
                    (share (string-append out "/share")))
               (for-each
                (lambda (shell)
                  (let* ((shell-name (symbol->string shell))
                         (dir (string-append "etc/completion/" shell-name)))
                    (mkdir-p dir)
                    (invoke (string-append bin "/restic") "generate"
                            (string-append "--" shell-name "-completion")
                            (string-append dir "/"
                                           (case shell
                                             ((bash) "restic")
                                             ((zsh) "_restic"))))))
                '(bash zsh))
               (with-directory-excursion "etc/completion"
                 (install-file "bash/restic"
                               (string-append etc "/bash_completion.d"))
                 (install-file "zsh/_restic"
                               (string-append share "/zsh/site-functions")))
               #t))))))
    (home-page "https://restic.net/")
    (synopsis "Backup program with multiple revisions, encryption and more")
    (description "Restic is a program that does backups right and was designed
with the following principles in mind:

@itemize
@item Easy: Doing backups should be a frictionless process, otherwise you
might be tempted to skip it.  Restic should be easy to configure and use, so
that, in the event of a data loss, you can just restore it.  Likewise,
restoring data should not be complicated.

@item Fast: Backing up your data with restic should only be limited by your
network or hard disk bandwidth so that you can backup your files every day.
Nobody does backups if it takes too much time.  Restoring backups should only
transfer data that is needed for the files that are to be restored, so that
this process is also fast.

@item Verifiable: Much more important than backup is restore, so restic
enables you to easily verify that all data can be restored.  @item Secure:
Restic uses cryptography to guarantee confidentiality and integrity of your
data.  The location the backup data is stored is assumed not to be a trusted
environment (e.g.  a shared space where others like system administrators are
able to access your backups).  Restic is built to secure your data against
such attackers.

@item Efficient: With the growth of data, additional snapshots should only
take the storage of the actual increment.  Even more, duplicate data should be
de-duplicated before it is actually written to the storage back end to save
precious backup space.
@end itemize")
    (license license:bsd-2)))

(define-public restic-rest-server
  (package
    (name "restic-rest-server")
    (version "0.12.1")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/restic/rest-server")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "18jk93j91dq4639nml4qnq1fq5j3s67ca3gvfka5aafln8ir8ffk"))))
    (build-system go-build-system)
    (arguments
     (list
      #:install-source? #f
      #:import-path "github.com/restic/rest-server/cmd/rest-server"
      #:unpack-path "github.com/restic/rest-server"
      #:phases
      #~(modify-phases %standard-phases
          ;; Unit tests seems to break with Guix' non-standard TMPDIR.
          (add-before 'check 'set-tmpdir
            (lambda _
              (setenv "TMPDIR" "/tmp")))
          (add-after 'install 'rename-binary
            (lambda _
              (with-directory-excursion #$output
                ;; "rest-server" is a bit too generic.
                (rename-file "bin/rest-server"
                             "bin/restic-rest-server")))))))
    (native-inputs (list go-github-com-coreos-go-systemd-v22
                         go-github-com-gorilla-handlers
                         go-github-com-minio-sha256-simd
                         go-github-com-miolini-datacounter
                         go-github-com-prometheus-client-golang
                         go-github-com-spf13-cobra
                         go-golang-org-x-crypto))
    (home-page "https://github.com/restic/rest-server")
    (synopsis "Restic REST server")
    (description
     "The Restic REST server is a high performance HTTP server that implements
restic's REST backend API.  It provides a secure and efficient way to backup
data remotely, using the restic backup client and a @code{rest:} URL.")
    (license license:bsd-2)))

(define-public zbackup
  (package
    (name "zbackup")
    (version "1.4.4")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/zbackup/zbackup")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "14l1kyxg7pccpax3d6qcpmdycb70kn3fxp1a59w64hqy2493hngl"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f))                    ;no test
    (inputs
     (list lzo libressl protobuf-3.6 xz zlib))
    (home-page "http://zbackup.org")
    (synopsis "Versatile deduplicating backup tool")
    (description
     "ZBackup is a globally-deduplicating backup tool, based on the
ideas found in Rsync.  Feed a large @file{.tar} into it, and it will
store duplicate regions of it only once, then compress and optionally
encrypt the result.  Feed another @file{.tar} file, and it will also
re-use any data found in any previous backups.  This way only new
changes are stored, and as long as the files are not very different,
the amount of storage required is very low.  Any of the backup files
stored previously can be read back in full at any time.  The program
is format-agnostic, so you can feed virtually any files to it.")
    (license license:gpl2+)))

(define-public dump
  (package
    (name "dump")
    (version "0.4b47")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "mirror://sourceforge/dump/dump/"
                           version "/dump-" version ".tar.gz"))
       (sha256
        (base32
         "1l2gzzxyqhinx1yqvj4yn9k8vx3iyqi1965dxf9kvvdv9zgaq8fh"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags
       `("--sysconfdir=/etc"
         "--disable-readline"
         "--disable-rmt")))
    (native-inputs
     (list pkg-config))
    (inputs
     (list openssl zlib
           `(,util-linux "lib") e2fsprogs))
    (home-page "https://dump.sourceforge.io/")
    (synopsis "Ext2/3/4 file system dump/restore utilities")
    (description "Dump examines files in a file system, determines which ones
need to be backed up, and copies those files to a specified disk, tape or
other storage medium.  Subsequent incremental backups can then be layered on
top of the full backup.  The restore command performs the inverse function of
dump; it can restore a full backup of a file system.  Single files and
directory subtrees may also be restored from full or partial backups in
interactive mode.")
    (license license:bsd-3)))

(define-public btrbk
  (package
    (name "btrbk")
    (version "0.32.6")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://digint.ch/download/btrbk/releases/"
                                  "btrbk-" version ".tar.xz"))
              (sha256
               (base32
                "0sxppfraakf56d1i4sbh4gyzg92panwpnq5y5hh6714igijarqh2"))))
    (build-system gnu-build-system)
    (arguments
     (list
      #:make-flags #~(list (string-append "PREFIX=" #$output))
      #:phases #~(modify-phases %standard-phases
                   (replace 'configure
                     (lambda _
                       (substitute* "Makefile"
                         (("= /etc")
                          (string-append "= $(PREFIX)/etc")))))
                   (delete 'check)
                   (add-after 'install 'wrap-scripts
                     (lambda* (#:key inputs outputs #:allow-other-keys)
                       (define btrbk (search-input-file outputs "bin/btrbk"))
                       ;; From a comment in btrbk, "Calling btrbk via 'lsbtr'
                       ;; symlink acts as an alias for 'btrbk ls', while also
                       ;; changing the semantics of the command line options."
                       (substitute* btrbk
                         (("program_name = \\$0")
                          (string-append "program_name = "
                                         "$ENV{'BTRBK_PROGRAM_NAME'}")))
                       ;; Wrap the script, so that it works with SSH URI and
                       ;; finds mbuffer and other tools out of the box.
                       (wrap-program btrbk
                         #:sh (search-input-file inputs "bin/bash")
                         '("BTRBK_PROGRAM_NAME" = ("$0"))
                         `("PATH" prefix
                           ,(map (lambda (command)
                                   (dirname (search-input-file inputs command)))
                                 (list "bin/btrfs"
                                       "bin/cat"
                                       "bin/find"
                                       "bin/mbuffer"
                                       "bin/ssh")))))))))
    (native-inputs (list ruby-asciidoctor))
    (inputs (list bash-minimal
                  btrfs-progs
                  coreutils
                  findutils
                  mbuffer
                  openssh
                  perl))
    (home-page "https://digint.ch/btrbk/")
    (synopsis "Backup tool for Btrfs subvolumes")
    (description "Btrbk is a backup tool for Btrfs subvolumes, taking
advantage of Btrfs specific capabilities to create atomic snapshots and
transfer them incrementally to your backup locations.  The source and target
locations are specified in a config file, which allows easily configuring
simple scenarios like e.g. a @i{laptop with locally attached backup disks}, as
well as more complex ones, e.g. a @i{server receiving backups from several
hosts via SSH, with different retention policy}.  It has features such as:
@itemize
@item atomic snapshots
@item incremental backups
@item flexible retention policy
@item backups to multiple destinations
@item transfer via SSH
@item resume backups (for removable and mobile devices)
@item archive to offline storage
@item encrypted backups to non-btrfs storage
@item wildcard subvolumes (useful for Docker and LXC containers)
@item transaction log
@item comprehensive list and statistics output
@item resolve and trace Btrfs parent-child and received-from relationships
@item list file changes between backups
@item calculate accurate disk space usage based on block regions.
@end itemize
Btrbk is designed to run as a cron job for triggering periodic snapshots and
backups, as well as from the command line (e.g. for instantly creating
additional snapshots).")
    (license license:gpl3+)))

(define-public burp
  (package
    (name "burp")
    (version "2.3.38")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/grke/burp")
             (commit version)))
       (sha256
        (base32 "0m0s6rrgxn3l6bad45vyhks6iz6bwvd0f3rzdsc7l28gar79wsj6"))
       (file-name (git-file-name name version))))
    (build-system gnu-build-system)
    (arguments
     `(#:phases
       (modify-phases %standard-phases
         (add-before 'check 'extend-test-time-outs
           ;; The defaults are far too low for busy boxes & spinning storage.
           (lambda _
             (substitute* (find-files "utest" "\\.c$")
               (("(tcase_set_timeout\\(tc_core,)[ 0-9]*(\\);.*)$" _ prefix suffix)
                (string-append prefix " 3600" suffix "\n")))
             #t)))))
    (inputs
     (list acl
           librsync
           ncurses ; for the live status monitor
           openssl
           uthash
           zlib))
    (native-inputs
     (list autoconf automake check pkg-config))
    (home-page "https://burp.grke.org")
    (synopsis "Differential backup and restore")
    (description "Burp is a network backup and restore program.  It attempts
to reduce network traffic and the amount of space that is used by each
backup.")
    (license license:agpl3)))

(define-public disarchive
  (package
    (name "disarchive")
    (version "0.6.0")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://files.ngyro.com/disarchive/"
                                  "disarchive-" version ".tar.gz"))
              (sha256
               (base32
                "1s4lyhhh1zsaxgn11hy2b1kdvnvpipii68wba0hwr471rd43m08k"))))
    (build-system gnu-build-system)
    (native-inputs
     (list autoconf
           automake
           pkg-config
           guile-3.0 ;for cross-compilation
           guile-bzip2
           guile-gcrypt
           guile-lzma
           guile-quickcheck))
    (inputs
     (list guile-3.0 zlib))
    (propagated-inputs
     (list guile-bzip2 guile-gcrypt guile-lzma))
    (home-page "https://ngyro.com/software/disarchive.html")
    (synopsis "Software archive disassembler")
    (description "Disarchive can disassemble software archives into data
and metadata.  The goal is to create a small amount of metadata that
can be used to recreate a software archive bit-for-bit from the
original files.  For example, a software archive made using tar and
Gzip will need to describe the order of files in the tarball and the
compression parameters used by Gzip.")
    (license license:gpl3+)))

(define-public borgmatic
  (package
    (name "borgmatic")
    (version "1.8.14")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "borgmatic" version))
       (sha256
        (base32 "0im7kx9mq1gymid88wa6yxcif4bdqpz5lag5fp9kpm8r5k13p2sr"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      ;; XXX: all tests fail with error: AttributeError: module
      ;; '_pytest.runner' has no attribute 'call_runtest_hook'.
      #:tests? #f
      #:phases #~(modify-phases %standard-phases
                   (add-after 'unpack 'configure
                     (lambda* (#:key inputs #:allow-other-keys)
                       ;; Set absolute store path to borg.
                       (substitute* "borgmatic/commands/borgmatic.py"
                         (("\\.get\\('local_path', 'borg'\\)")
                          (string-append ".get('local_path', '"
                                         (search-input-file inputs "bin/borg")
                                         "')")))
                       (substitute* "tests/unit/commands/test_borgmatic.py"
                         (("(module.get_local_path.+ == )'borg'" all start)
                          (string-append start "'"
                                         (search-input-file inputs "bin/borg")
                                         "'")))))
                   (add-before 'check 'set-path
                     (lambda _
                         ;; Tests require the installed executable.
                         (setenv "PATH"
                                 (string-append #$output "/bin" ":"
                                                (getenv "PATH"))))))))
    (native-inputs
     (list python-flexmock
           python-pytest
           python-pytest-cov
           python-setuptools
           python-wheel))
    (inputs
     (list borg
           python-apprise
           python-colorama
           python-jsonschema
           python-requests
           python-ruamel.yaml))
    (home-page "https://torsion.org/borgmatic/")
    (synopsis "Simple, configuration-driven backup software")
    (description
     "borgmatic is simple, configuration-driven backup software for servers
and workstations.  Protect your files with client-side encryption.  Backup
your databases too.  Monitor it all with integrated third-party services.
borgmatic is powered by borg.")
    (license license:gpl3+)))

(define-public vorta
  (package
    (name "vorta")
    (version "0.9.1")
    ;; The test folder is not included in the PyPI archive.
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/borgbase/vorta")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256
               (base32
                "0lhqikwrydnys24yic6xaqidwacdibx48cl0066xv9xnsjanfsf0"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:test-flags
      #~(list "-k" "not test_excludes"
              "--ignore=tests/integration"
              "--ignore=tests/unit")
      #:imported-modules `((guix build qt-utils)
                           (guix build cmake-build-system)
                           (guix build qt-build-system)
                           ,@%pyproject-build-system-modules)
      #:modules '((guix build utils)
                  (guix build pyproject-build-system)
                  ((guix build qt-build-system) #:prefix qt:))
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'unpack 'patch-borg-path
            (lambda* (#:key inputs #:allow-other-keys)
              (substitute* "src/vorta/borg/borg_job.py"
                (("which\\('borg'\\)")
                 (string-append "which('" #$(this-package-input "borg")
                                "/bin/borg')")))))
          ;; XXX The test suite tries to write to $HOME.
          (add-before 'check 'set-HOME
            (lambda _
              (setenv "HOME" "/tmp")))
          ;; Otherwise, the user interface's icons will be missing.
          (add-after 'wrap 'qt-wrap
            (assoc-ref qt:%standard-phases 'qt-wrap)))))
    (native-inputs
     (list python-platformdirs
           python-pytest-mock
           python-pytest-qt
           python-pytest-runner
           python-setuptools-git))
    (inputs
     (list borg
           python-appdirs
           python-dateutil
           python-keyring
           python-paramiko
           python-peewee
           python-psutil
           python-pyqt-6
           python-secretstorage
           ;; This is included so that the qt-wrap phase picks it up.
           qtsvg))
    (home-page "https://vorta.borgbase.com")
    (synopsis "Graphical backup client based on BorgBackup")
    (description "Vorta is a graphical backup client based on the Borg backup
tool.  It supports the use of remote backup repositories.  It can perform
scheduled backups, and has a graphical tool for browsing and extracting the Borg
archives.")
    (license license:gpl3+)))

(define-public grsync
  (package
    (name "grsync")
    (version "1.3.1")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://www.opbyte.it/release/"
                                  "grsync-" version ".tar.gz"))
              (sha256
               (base32
                "1ly6ng211wj9sc0la73jsz2lviwd7b4a7bhw16kmnbm6v8jhxk1k"))))
    (build-system gnu-build-system)
    (native-inputs (list intltool pkg-config))
    (inputs (list gtk+))
    (propagated-inputs (list rsync))
    (home-page "https://www.opbyte.it/grsync/")
    (synopsis "GTK frontend for rsync")
    (description
     "Grsync is a simple graphical interface using GTK for the @command{rsync}
command line program.  It currently supports only a limited set of the most
important rsync features, but can be used effectively for local directory
synchronization.")
    (license license:gpl2)))
p7zip.sourceforge.net/") (synopsis "Command-line file archiver with high compression ratio") (description "p7zip is a command-line port of 7-Zip, a file archiver that handles the 7z format which features very high compression ratios.") (license (list license:lgpl2.1+ license:gpl2+ license:public-domain)))) (define-public gzstream (package (name "gzstream") (version "1.5") (source (origin (method url-fetch) (uri ;; No versioned URL, but last release was in 2003. "http://www.cs.unc.edu/Research/compgeom/gzstream/gzstream.tgz") (file-name (string-append name "-" version ".tgz")) (sha256 (base32 "00y19pqjsdj5zcrx4p9j56pl73vayfwnb7y2hvp423nx0cwv5b4r")) (modules '((guix build utils))) (snippet ;; Remove pre-compiled object. '(begin (delete-file "gzstream.o") #t)))) (build-system gnu-build-system) (arguments `(#:test-target "test" #:phases (modify-phases %standard-phases ;; Enable PIC, so it can be used in shared libraries. (add-after 'unpack 'use-pic (lambda _ (substitute* "Makefile" (("CPPFLAGS = " all) (string-append all "-fPIC "))) #t)) (delete 'configure) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (lib (string-append out "/lib")) (include (string-append out "/include"))) (install-file "libgzstream.a" lib) (install-file "gzstream.h" include) #t)))))) (propagated-inputs (list zlib)) (home-page "http://www.cs.unc.edu/Research/compgeom/gzstream/") (synopsis "Compressed C++ iostream") (description "gzstream is a small library for providing zlib functionality in a C++ iostream.") (license license:lgpl2.1+))) (define-public zopfli (package (name "zopfli") (version "1.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/zopfli") (commit (string-append name "-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0dr8n4j5nj2h9n208jns56wglw59gg4qm3s7c6y3hs75d0nnkhm4")))) (build-system cmake-build-system) (arguments `(#:tests? #f ;no test suite #:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) (home-page "https://github.com/google/zopfli") (synopsis "Very good, but slow, deflate or zlib compression") (description "Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib compression. ZopfliCompress supports the deflate, gzip and zlib output formats. This library can only compress, not decompress; existing zlib or deflate libraries can decompress the data.") (license license:asl2.0))) (define-public zpaq (package (name "zpaq") (version "7.15") (source (origin (method url-fetch/zipbomb) (uri (string-append "http://mattmahoney.net/dc/zpaq" (string-delete #\. version) ".zip")) (sha256 (base32 "066l94yyladlfzri877nh2dhkvspagjn3m5bmv725fmhkr9c4pp8")) (modules '((guix build utils))) (snippet ;; Delete irrelevant pre-compiled binaries. '(begin (for-each delete-file (find-files "." "\\.exe$")) #t)))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases (delete 'configure)) ; no ‘configure’ script #:make-flags (list (string-append "CPPFLAGS=-Dunix" ,(match (or (%current-target-system) (%current-system)) ("x86_64-linux" "") ("i686-linux" "") (_ " -DNOJIT"))) ;; These should be safe, lowest-common-denominator instruction sets, ;; allowing for some optimisation while remaining reproducible. (string-append "CXXFLAGS=-O3 -DNDEBUG" ,(match (or (%current-target-system) (%current-system)) ("x86_64-linux" " -march=nocona -mtune=generic") ("i686-linux" " -march=i686 -mtune=generic") ("armhf-linux" " -mtune=generic-armv7-a") (_ ""))) (string-append "PREFIX=" (assoc-ref %outputs "out"))))) (native-inputs (list perl)) ; for pod2man (home-page "http://mattmahoney.net/dc/zpaq.html") (synopsis "Incremental journaling archiver") (description "ZPAQ is a command-line archiver for realistic situations with many duplicate and already compressed files. It backs up only those files modified since the last update. All previous versions remain untouched and can be independently recovered. Identical files are only stored once (known as @dfn{de-duplication}). Archives can also be encrypted. ZPAQ is intended to back up user data, not entire operating systems. It ignores owner and group IDs, ACLs, extended attributes, or special file types like devices, sockets, or named pipes. It does not follow or restore symbolic links or junctions, and always follows hard links.") (license (list license:public-domain ;; libzpaq.cpp contains a mix of public-domain and ;; expat-licenced (or ‘MIT’) code. license:expat)))) (define-public unshield (package (name "unshield") (version "1.4.3") (source (origin (method git-fetch) (uri (git-reference (url "http://github.com/twogood/unshield") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "19wn22vszhci8dfcixx5rliz7phx3lv5ablvhjlclvj75k2vsdqd")))) (build-system cmake-build-system) (inputs `(("zlib" ,zlib) ("openssl" ,openssl) ;; Test data that is otherwise downloaded with curl. ("unshield-avigomanager11b22.zip" ,(origin (method url-fetch) (uri (string-append "https://www.dropbox.com/s/8r4b6752swe3nhu/" "unshield-avigomanager11b22.zip?dl=1")) (sha256 (base32 "0fwq7lih04if68wpwpsk5wjqyvh32db76a41sq6gbx4dn1lc3ddn")) (file-name "unshield-avigomanager11b22.zip"))) ("unshield-baldurs_gate_patch_v1_1_4315_international.zip" ,(origin (method url-fetch) (uri (string-append "https://www.dropbox.com/s/9ruil8oi6amjbbk/" "unshield-baldurs_gate_patch_v1_1_4315_international.zip?dl=1")) (sha256 (base32 "0spaxf6dardlhqxz3ys09fzamj007q3nfyw4xng6gh3qp9780maj")) (file-name "unshield-baldurs_gate_patch_v1_1_4315_international.zip"))) ("unshield-the-feeble-files-spanish.zip" ,(origin (method url-fetch) (uri (string-append "https://www.dropbox.com/s/1ng0z9kfxc7eb1e/" "unshield-the-feeble-files-spanish.zip?dl=1")) (sha256 (base32 "1k5cw6vnpja8yjlnhx5124xrw9i8s1l539hfdqqrqz3l5gn0bnyd")) (file-name "unshield-the-feeble-files-spanish.zip"))))) (native-inputs (list unzip)) (arguments `(#:out-of-source? #f #:phases (modify-phases %standard-phases (add-before 'check 'pre-check (lambda* (#:key inputs #:allow-other-keys) (for-each (lambda (i) (copy-file (assoc-ref inputs i) (string-append "test/v0/" i))) '("unshield-avigomanager11b22.zip" "unshield-baldurs_gate_patch_v1_1_4315_international.zip" "unshield-the-feeble-files-spanish.zip")) (substitute* (find-files "test/" "/*\\.sh") ;; Tests expect the unshield binary in a specific ;; location. (("/var/tmp/unshield/bin/unshield") (string-append (getcwd) "/src/unshield")) ;; We no longer need to download the data. ((".?URL=.*$") "") (("curl -(|f)sSL -o test.zip .*") "")) (substitute* "test/v0/avigomanager.sh" (("test.zip") (string-append (getcwd) "/test/v0/unshield-avigomanager11b22.zip"))) (substitute* "test/v0/baldurs_gate_patch_v1_1_4315_international.sh" (("test.zip") (string-append (getcwd) "/test/v0/unshield-baldurs_gate_patch_v1_1_4315_international.zip"))) (substitute* "test/v0/the-feeble-files-spanish.sh" (("test.zip") (string-append (getcwd) "/test/v0/unshield-the-feeble-files-spanish.zip"))) #t)) (replace 'check (lambda _ (invoke "./run-tests.sh")))))) (home-page "https://github.com/twogood/unshield") (synopsis "Extract CAB files from InstallShield installers") (description "@command{unshield} is a tool and library for extracting @file{.cab} archives from InstallShield installers.") (license license:expat))) (define-public zstd (package (name "zstd") (version "1.5.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/facebook/zstd/releases/download/" "v" version "/zstd-" version ".tar.gz")) (sha256 (base32 "1l1zm1imcc2ixayykyh4y421shdj3pzp7g2xm2k2js8jmipxahkw")))) (build-system gnu-build-system) (outputs '("out" ;1.5MiB executables and documentation "lib" ;1.2MiB shared library and headers "static")) ;1.2MiB static library (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'patch-command-file-names ;; Don't require hard requirements to be in $PATH. (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (our (lambda (name) (string-append out "/bin/" name)))) (substitute* "programs/zstdgrep" (("(:-)(grep)" _ prefix command) (string-append prefix (which command))) (("(:-)(zstdcat)" _ prefix command) (string-append prefix (our command)))) (substitute* "programs/zstdless" (("zstdcat" command) (our command)))))) (delete 'configure) ;no configure script (add-after 'install 'adjust-library-locations (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (lib (assoc-ref outputs "lib")) (static (assoc-ref outputs "static")) (shared-libs (string-append lib "/lib")) (static-libs (string-append static "/lib"))) (mkdir-p static-libs) ;; This is based on the win64 release zip file from zstd. ,@(if (target-mingw?) `((for-each delete-file (find-files out "\\.so")) (for-each delete-file (find-files shared-libs "\\.so")) (rename-file (string-append shared-libs "/libzstd.a") (string-append static-libs "/libzstd_static.lib")) (delete-file-recursively (string-append shared-libs "/pkgconfig")) ;; no binary for interpreter `sh' found in $PATH (delete-file (string-append out "/bin/zstdgrep")) (delete-file (string-append out "/bin/zstdless")) (delete-file (string-append out "/share/man/man1/zstdgrep.1")) (delete-file (string-append out "/share/man/man1/zstdless.1"))) `(;; Move the static library to its own output to save ~1MiB. (for-each (lambda (ar) (link ar (string-append static-libs "/" (basename ar))) (delete-file ar)) (find-files shared-libs "\\.a$")) ;; Make sure the pkg-config file refers to the right output. (substitute* (string-append shared-libs "/pkgconfig/libzstd.pc") (("^prefix=.*") ;; Note: The .pc file expects a trailing slash for 'prefix'. (string-append "prefix=" lib "/\n"))))))))) #:make-flags (list ,(string-append "CC=" (cc-for-target)) (string-append "prefix=" (assoc-ref %outputs "out")) (string-append "libdir=" (assoc-ref %outputs "lib") "/lib") (string-append "includedir=" (assoc-ref %outputs "lib") "/include") ,@(if (target-mingw?) `(;; See the note in the Makefile. "TARGET_SYSTEM=Windows" ;; Don't try to link with pthread. "THREAD_LD=" ;; This isn't picked up correctly in the Makefiles. "EXT=.exe") '()) ;; Auto-detection is over-engineered and buggy. "PCLIBDIR=lib" "PCINCDIR=include" ;; Skip auto-detection of, and creating a dependency on, the build ;; environment's ‘xz’ for what amounts to a dubious feature anyway. "HAVE_LZMA=0" ;; Not currently detected, but be explicit & avoid surprises later. "HAVE_LZ4=0" "HAVE_ZLIB=0") #:tests? ,(not (or (target-hurd?) (%current-target-system))))) (home-page "https://facebook.github.io/zstd/") (synopsis "Zstandard real-time compression algorithm") (description "Zstandard (@command{zstd}) is a lossless compression algorithm that combines very fast operation with a compression ratio comparable to that of zlib. In most scenarios, both compression and decompression can be performed in ‘real time’. The compressor can be configured to provide the most suitable trade-off between compression ratio and speed, without affecting decompression speed.") (license (list license:bsd-3 ; the main top-level LICENSE file license:bsd-2 ; many files explicitly state 2-Clause license:gpl2 ; the main top-level COPYING file license:gpl3+ ; tests/gzip/*.sh license:expat ; lib/dictBuilder/divsufsort.[ch] license:public-domain ; zlibWrapper/examples/fitblk* license:zlib)))) ; zlibWrapper/{gz*.c,gzguts.h} (define-public zstd-1.5.6 (package (inherit zstd) ;; Don't hide this package from the UI. (properties '()) (version "1.5.6") (source (origin (method url-fetch) (uri (string-append "https://github.com/facebook/zstd/releases/download/" "v" version "/zstd-" version ".tar.gz")) (sha256 (base32 "1h83si7s70jy7mcy0mv1c9mbkz66qqpawxs0zkmc3b1ayinf0acc")))))) (define-public pzstd (package/inherit zstd-1.5.6 (name "pzstd") (outputs '("out")) (inputs `(,@(if (%current-target-system) `(("googletest" ,googletest)) '()))) (native-inputs `(,@(if (%current-system) `(("googletest" ,googletest)) '()))) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'enter-subdirectory (lambda _ (chdir "contrib/pzstd") #t)) (delete 'configure) ; no configure script (add-before 'check 'compile-tests (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "tests" make-flags))) (add-after 'install 'install-documentation (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (doc (string-append out "/share/doc/" ,name))) (mkdir-p doc) (install-file "README.md" doc) #t)))) #:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "CXX=" ,(cxx-for-target)) (string-append "PREFIX=" (assoc-ref %outputs "out"))))) (home-page (package-home-page zstd)) (synopsis "Threaded implementation of the Zstandard compression algorithm") (description "Parallel Zstandard (PZstandard or @command{pzstd}) is a multi-threaded implementation of the @uref{http://zstd.net/, Zstandard compression algorithm}. It is fully compatible with the original Zstandard file format and command-line interface, and can be used as a drop-in replacement. Compression is distributed over multiple processor cores to improve performance, as is the decompression of data compressed in this manner. Data compressed by other implementations will only be decompressed by two threads: one performing the actual decompression, the other input and output.") (license (package-license zstd)))) (define-public zip (package (name "zip") (version "3.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/infozip" "/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz")) (sha256 (base32 "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h")))) (build-system gnu-build-system) (inputs (list bzip2)) (arguments `(#:tests? #f ; no test target #:make-flags (let ((out (assoc-ref %outputs "out"))) (list "-f" "unix/Makefile" (string-append "prefix=" out) (string-append "MANDIR=" out "/share/man/man1"))) #:phases (modify-phases %standard-phases (replace 'build (lambda* (#:key (make-flags '()) #:allow-other-keys) (apply invoke "make" "generic_gcc" make-flags))) (delete 'configure)))) (home-page "http://www.info-zip.org/Zip.html") (synopsis "Compression and file packing utility") (description "Zip is a compression and file packaging/archive utility. Zip is useful for packaging a set of files for distribution, for archiving files, and for saving disk space by temporarily compressing unused files or directories. Zip puts one or more compressed files into a single ZIP archive, along with information about the files (name, path, date, time of last modification, protection, and check information to verify file integrity). An entire directory structure can be packed into a ZIP archive with a single command. Zip has one compression method (deflation) and can also store files without compression. Zip automatically chooses the better of the two for each file. Compression ratios of 2:1 to 3:1 are common for text files.") (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) (define-public unzip (package (inherit zip) (name "unzip") (version "6.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/infozip" "/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz")) (sha256 (base32 "0dxx11knh3nk95p2gg2ak777dd11pr7jx5das2g49l262scrcv83")) (patches (search-patches "unzip-CVE-2014-8139.patch" "unzip-CVE-2014-8140.patch" "unzip-CVE-2014-8141.patch" "unzip-CVE-2014-9636.patch" "unzip-CVE-2015-7696.patch" "unzip-CVE-2015-7697.patch" "unzip-allow-greater-hostver-values.patch" "unzip-initialize-symlink-flag.patch" "unzip-remove-build-date.patch" "unzip-attribs-overflow.patch" "unzip-overflow-on-invalid-input.patch" "unzip-format-secure.patch" "unzip-overflow-long-fsize.patch" ;; From Fedora "unzip-alt-iconv-utf8.patch" "unzip-alt-iconv-utf8-print.patch" "unzip-fix-recmatch.patch" "unzip-case-insensitive.patch" "unzip-close.patch" "unzip-COVSCAN-fix-unterminated-string.patch" "unzip-CVE-2016-9844.patch" "unzip-CVE-2018-1000035.patch" "unzip-CVE-2018-18384.patch" "unzip-exec-shield.patch" "unzip-manpage-fix.patch" "unzip-overflow.patch" "unzip-timestamp.patch" "unzip-valgrind.patch" "unzip-x-option.patch" ;; CVE-2019-13232 "unzip-zipbomb-manpage.patch" "unzip-zipbomb-part1.patch" "unzip-zipbomb-part2.patch" "unzip-zipbomb-part3.patch" ;; https://github.com/madler/unzip/issues/2 "unzip-32bit-zipbomb-fix.patch" "unzip-CVE-2022-0529+CVE-2022-0530.patch")))) (build-system gnu-build-system) ;; no inputs; bzip2 is not supported, since not compiled with BZ_NO_STDIO (arguments (list #:phases #~(modify-phases %standard-phases (delete 'configure) (add-after 'unpack 'fortify (lambda _ ;; Mitigate CVE-2018-1000035, an exploitable buffer overflow. ;; This environment variable is recommended in 'unix/Makefile' ;; for passing flags to the C compiler. (setenv "LOCAL_UNZIP" "-D_FORTIFY_SOURCE=1") #t)) (replace 'build (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" `("-j" ,(number->string (parallel-job-count)) ,@make-flags "generic_gcc"))))) #:make-flags ;; Fix cross-compilation without affecting native builds, as doing so ;; would trigger too many rebuilds: https://issues.guix.gnu.org/57127 (if (%current-target-system) #~(list "-f" "unix/Makefile" (string-append "prefix=" #$output) (string-append "MANDIR=" #$output "/share/man/man1")) #~(list "-f" "unix/Makefile" (string-append "prefix=" %output) (string-append "MANDIR=" %output "/share/man/man1"))))) (home-page "http://www.info-zip.org/UnZip.html") (synopsis "Decompression and file extraction utility") (description "UnZip is an extraction utility for archives compressed in .zip format, also called \"zipfiles\". UnZip lists, tests, or extracts files from a .zip archive. The default behaviour (with no options) is to extract into the current directory, and subdirectories below it, all files from the specified zipfile. UnZip recreates the stored directory structure by default.") (properties `((lint-hidden-cve . ("CVE-2019-13232")))) (license (license:non-copyleft "file://LICENSE" "See LICENSE in the distribution.")))) (define-public ziptime (let ((commit "2a5bc9dfbf7c6a80e5f7cb4dd05b4036741478bc") (revision "0")) (package (name "ziptime") (version (git-version "0.0.0" revision commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://android.googlesource.com/platform/build") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0hrn61b3a97dlc4iqc28rwx8k8zf7ycbwzqqp93vj34zy5a541kn")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no test suite #:phases (modify-phases %standard-phases (add-after 'unpack 'change-directory (lambda _ (chdir "tools/ziptime"))) (delete 'configure) ; nothing to configure (replace 'build ;; There is no Makefile, only an ‘Android.bp’ file. Ignore it. (lambda _ (let ((c++ ,(cxx-for-target))) (apply invoke c++ "-O2" "-o" "ziptime" (find-files "." "\\.cpp$"))))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (doc (string-append out "/share/doc/" ,name "-" ,version))) (install-file "ziptime" bin) (install-file "README.txt" doc))))))) ;; There is no separate home page for this tiny bundled build tool. (home-page (string-append "https://android.googlesource.com/platform/build/" "+/master/tools/ziptime/README.txt")) (synopsis "Normalize @file{.zip} archive header timestamps") (description "Ziptime helps make @file{.zip} archives reproducible by replacing timestamps in the file header with a fixed time (1 January 2008). ``Extra fields'' are not changed, so you'll need to use the @code{-X} option to @command{zip} to prevent it from storing the ``universal time'' field.") (license license:asl2.0)))) (define-public zziplib (package (name "zziplib") (version "0.13.72") (home-page "https://github.com/gdraheim/zziplib") (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 "0i6bpa2b13z19alm6ig80364dnin1w28cvif18k6wkkb0w3dzp8y")))) (build-system cmake-build-system) (inputs (list zlib)) (native-inputs (list perl ; for the documentation pkg-config python zip)) ; to create test files (synopsis "Library for accessing zip files") (description "ZZipLib is a library based on zlib for accessing zip files.") ;; zziplib is dual licensed under LGPL2.0+ and MPL1.1. Some example source ;; files carry the Zlib license; see "docs/copying.html" for details. (license (list license:lgpl2.0+ license:mpl1.1)))) (define-public libzip (package (name "libzip") (version "1.9.2") (source (origin (method url-fetch) (uri (string-append "https://libzip.org/download/libzip-" version ".tar.xz")) (sha256 (base32 "0dsrpb1faywhm0j8akx21gp7cn99wpz3h543jw8r7p5jnx99hgn9")))) (native-inputs (list perl pkg-config)) (inputs (list gnutls xz openssl zlib `(,zstd "lib"))) (build-system cmake-build-system) (home-page "https://libzip.org") (synopsis "C library for reading, creating, and modifying zip archives") (description "Libzip is a C library for reading, creating, and modifying zip archives. Files can be added from data buffers, files, or compressed data copied directly from other zip archives. Changes made without closing the archive can be reverted.") (license license:bsd-3))) (define-public atool (package (name "atool") (version "0.39.0") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/atool/atool-" version ".tar.gz")) (sha256 (base32 "0fvhzip2v08jgnlfpyj6rapan39xlsl1ksgq4lp8gfsai2ah1xma")))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'unpack 'embed-absolute-file-name (lambda* (#:key inputs #:allow-other-keys) (substitute* "atool" (("(^\\$::cfg_path_file.*= )'file'" _ pre) (string-append pre "'" (assoc-ref inputs "file") "/bin/file'"))) #t))))) (inputs (list perl file)) (home-page "https://www.nongnu.org/atool/") (synopsis "Universal tool to manage file archives of various types") (description "The main command is @command{aunpack} which extracts files from an archive. The other commands provided are @command{apack} (to create archives), @command{als} (to list files in archives), and @command{acat} (to extract files to standard out). As @command{atool} invokes external programs to handle the archives, not all commands may be supported for a certain type of archives.") (license license:gpl2+))) (define-public lunzip (package (name "lunzip") (version "1.13") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/lunzip/" "lunzip-" version ".tar.gz")) (sha256 (base32 "153qa674rlbw812fb7h8rfzdw4hvr6vgkjl1c0yfplj7p4h86z9w")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list ,(string-append "CC=" (cc-for-target))))) (home-page "https://www.nongnu.org/lzip/lunzip.html") (synopsis "Small, stand-alone lzip decompressor") (description "Lunzip is a decompressor for files in the lzip compression format (.lz), written as a single small C tool with no dependencies. This makes it well-suited to embedded and other systems without a C++ compiler, or for use in applications such as software installers that need only to decompress files, not compress them. Lunzip is intended to be fully compatible with the regular lzip package.") (license (list license:bsd-2 ; carg_parser.[ch] license:gpl2+)))) ; everything else (define-public clzip (package (name "clzip") (version "1.13") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/clzip/" "clzip-" version ".tar.gz")) (sha256 (base32 "0ypagygbnq4ppqyg7sj4816x5c1w579883m2nsq0zxbb0gszpjbs")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list ,(string-append "CC=" (cc-for-target))))) (home-page "https://www.nongnu.org/lzip/clzip.html") (synopsis "Small, stand-alone lzip compressor and decompressor") (description "Clzip is a compressor and decompressor for files in the lzip compression format (.lz), written as a single small C tool with no dependencies. This makes it well-suited to embedded and other systems without a C++ compiler, or for use in other applications like package managers. Clzip is intended to be fully compatible with the regular lzip package.") (license (list license:bsd-2 ; carg_parser.[ch], lzd in clzip.texi license:gpl2+)))) (define-public lzlib (package (name "lzlib") (version "1.13") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/lzlib/" "lzlib-" version ".tar.gz")) (sha256 (base32 "107vkzfgvb21cqq4gmxyfn97l4s2c0b3i14k9rkv594b2krmiax1")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list (string-append "CC=" ,(cc-for-target)) "--disable-static" "--enable-shared"))) ; only static (.a) is built by default (home-page "https://www.nongnu.org/lzip/lzlib.html") (synopsis "Lzip data compression C library") (description "Lzlib is a C library for in-memory LZMA compression and decompression in the lzip format. It supports integrity checking of the decompressed data, and all functions are thread-safe. The library should never crash, even in case of corrupted input.") (license (list license:bsd-2 ; the library itself license:gpl2+)))) ; main.c (i.e. minilzip used by tests) (define-public plzip (package (name "plzip") (version "1.11") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/plzip/" "plzip-" version ".tar.gz")) (sha256 (base32 "0sv2sp0ppxkdds4qiwb3ddvlv22ydv61n3hk74rkh8ljbkjcpqyq")))) (build-system gnu-build-system) (arguments (list #:configure-flags #~(list (string-append "CXX=" #$(cxx-for-target))))) (inputs (list lzlib)) (home-page "https://www.nongnu.org/lzip/plzip.html") (synopsis "Parallel lossless data compressor for the lzip format") (description "Plzip is a massively parallel (multi-threaded) lossless data compressor and decompressor that uses the lzip file format (.lz). Files produced by plzip are fully compatible with lzip and can be rescued with lziprecover. On multiprocessor machines, plzip can compress and decompress large files much faster than lzip, at the cost of a slightly reduced compression ratio (0.4% to 2%). The number of usable threads is limited by file size: on files of only a few MiB, plzip is no faster than lzip. Files that were compressed with regular lzip will also not be decompressed faster by plzip, unless the @code{-b} option was used: lzip usually produces single-member files which can't be decompressed in parallel.") (license (list license:bsd-2 ; arg_parser.{cc,h} license:gpl2+)))) ; everything else (define-public innoextract (package (name "innoextract") (version "1.9") (source (origin (method url-fetch) (uri (string-append "https://constexpr.org/innoextract/files/" "innoextract-" version "/" "/innoextract-" version ".tar.gz")) (sha256 (base32 "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) (inputs (list boost xz)) (native-inputs (list pkg-config)) (home-page "https://constexpr.org/innoextract/") (synopsis "Tool for extracting Inno Setup installers") (description "innoextract allows extracting Inno Setup installers under non-Windows systems without running the actual installer using wine.") (license license:zlib))) (define-public isa-l (package (name "isa-l") (version "2.30.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/intel/isa-l") ;; Corresponds to tag v2.30.0 (commit "2df39cf5f1b9ccaa2973f6ef273857e4dc46f0cf"))) (file-name (git-file-name name version)) (sha256 (base32 "06ymkrf3hkkd94i59ahm79545rk709y8rd0v2l86w38z6is942q0")))) (build-system gnu-build-system) (native-inputs (list autoconf automake libtool nasm)) (home-page "https://github.com/intel/isa-l") (synopsis "Intelligent storage acceleration library") (description "ISA-L is a collection of optimized low-level functions targeting storage applications. ISA-L includes: @itemize @item Erasure codes: fast block Reed-Solomon type erasure codes for any encode/decode matrix; @item CRC: fast implementations of cyclic redundancy check. Six different polynomials supported: iscsi32, ieee32, t10dif, ecma64, iso64, jones64; @item Raid: calculate and operate on XOR and P+Q parity found in common RAID implementations; @item Compression: fast deflate-compatible data compression; @item De-compression: fast inflate-compatible data compression; @item igzip: command line application like gzip, accelerated with ISA-L. @end itemize ") (license license:bsd-3))) (define-public brotli (package (name "brotli") (version "1.0.9") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/brotli") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1fikasxf7r2dwlk8mv8w7nmjkn0jw5ic31ky3mvpkdzwgd4xfndl")) (modules '((guix build utils))) (snippet '(begin ;; Cherry-picked from upstream since the latest release ;; https://github.com/google/brotli/commit/09b0992b6acb7faa6fd3b23f9bc036ea117230fc (substitute* (find-files "scripts" "^lib.*pc\\.in") (("-R\\$\\{libdir\\} ") "")) #t)))) (build-system cmake-build-system) (arguments `(#:phases (modify-phases %standard-phases (add-after 'install 'rename-static-libraries ;; The build tools put a 'static' suffix on the static libraries, but ;; other applications don't know how to find these. (lambda* (#:key outputs #:allow-other-keys) (let ((lib (string-append (assoc-ref %outputs "out") "/lib/"))) (rename-file (string-append lib "libbrotlicommon-static.a") (string-append lib "libbrotlicommon.a")) (rename-file (string-append lib "libbrotlidec-static.a") (string-append lib "libbrotlidec.a")) (rename-file (string-append lib "libbrotlienc-static.a") (string-append lib "libbrotlienc.a")) #t)))) #:configure-flags (list ;; Defaults to "lib64" on 64-bit archs. (string-append "-DCMAKE_INSTALL_LIBDIR=" (assoc-ref %outputs "out") "/lib")))) (home-page "https://github.com/google/brotli") (synopsis "General-purpose lossless compression") (description "This package provides the reference implementation of Brotli, a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with @code{deflate} but offers more dense compression. The specification of the Brotli Compressed Data Format is defined in RFC 7932.") (license license:expat))) (define-public google-brotli (deprecated-package "google-brotli" brotli)) (define-public python-brotli (package (inherit brotli) (name "python-brotli") (build-system python-build-system) (arguments '()) (synopsis "Python interface to Brotli") (description "This package provides a Python interface to the @code{brotli} package, an implementation of the Brotli lossless compression algorithm."))) (define-public python-google-brotli (deprecated-package "python-google-brotli" python-brotli)) (define-public java-brotli (package (inherit brotli) (name "java-brotli") (build-system ant-build-system) (arguments `(#:jar-name "java-brotli.jar" #:source-dir "java" ;; Tests are mixed in with java sources, the ant build system ;; doesn't allow that #:tests? #f)) (native-inputs (list java-junit)))) (define-public ucl (package (name "ucl") (version "1.03") (source (origin (method url-fetch) (uri (string-append "https://www.oberhumer.com/opensource/" name "/download/" name "-" version ".tar.gz")) (sha256 (base32 "0j036lkwsxvm15gr29n8wn07cqq79dswjs9k54939ms5zngjjrdq")))) (build-system gnu-build-system) (arguments `(;; UCL 1.03 fails to build with newer C standards. #:configure-flags '("CFLAGS=-std=gnu90" "--enable-shared" "--disable-static"))) (home-page "https://www.oberhumer.com/opensource/ucl/") (synopsis "Portable lossless data compression library") (description "UCL implements a number of compression algorithms that achieve an excellent compression ratio while allowing fast decompression. Decompression requires no additional memory. Compared to LZO, the UCL algorithms achieve a better compression ratio but decompression is a little bit slower.") (license license:gpl2+))) (define-public upx (package (name "upx") (version "4.2.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/upx/upx/releases/download/v" version "/upx-" version "-src.tar.xz")) (sha256 (base32 "1i71p03861hlf5x1w217l67zm5inm449zhbg6kpv8zyj0wb5dmjy")))) (build-system cmake-build-system) (home-page "https://upx.github.io/") (synopsis "Compression tool for executables") (description "The Ultimate Packer for eXecutables (UPX) is an executable file compressor. UPX typically reduces the file size of programs and shared libraries by around 50%--70%, thus reducing disk space, network load times, download times, and other distribution and storage costs.") ;; These CVEs have been fixed since 4.0.2 but are still linted. (properties `((lint-hidden-cve . ("CVE-2023-23456" "CVE-2023-23457")))) (license license:gpl2+))) (define-public quazip-0 (package (name "quazip") (version "0.9.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/stachenov/quazip") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "11icgwv2xyxhd1hm1add51xv54zwkcqkg85d1xqlgiigvbm196iq")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ;no test (native-inputs (list doxygen)) (inputs (list qtbase-5 zlib)) (home-page "https://stachenov.github.io/quazip/index.html") (synopsis "Qt/C++ wrapper for Minizip") (description "QuaZIP is a simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package that can be used to access ZIP archives. It uses Trolltech's Qt toolkit. QuaZIP allows you to access files inside ZIP archives using QIODevice API, and that means that you can also use QTextStream, QDataStream or whatever you would like to use on your zipped files. QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both reading from and writing to ZIP archives.") ;; Project is distributed under LGPL, but "quazip/z*" "quazip/unzip.*" are ;; distributed under zlib terms. (license (list license:lgpl2.1+ license:zlib)))) (define-public quazip (package (inherit quazip-0) (name "quazip") (version "1.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/stachenov/quazip") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1jsw4xm5wyaqcj1pma5zzd8f5xbgd5lcjh18ah3kg36xz5i69yi4")))))) (define-public zchunk (package (name "zchunk") (version "1.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/zchunk/zchunk") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "19rw870150w1c730wzg2pn68ixmscq8cwa3vricqhwxs5l63r5wr")))) (build-system meson-build-system) (arguments (list #:phases #~(modify-phases %standard-phases (add-after 'unpack 'patch-file-name (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/zck_gen_zdict.c" (("/usr/(bin/zstd)" _ file) (string-append (search-input-file inputs file))))))))) (native-inputs (list pkg-config)) (inputs (list curl zstd)) (propagated-inputs (list `(,zstd "lib"))) ; in Requires.private of zck.pc (home-page "https://github.com/zchunk/zchunk") (synopsis "Compressed file format for efficient deltas") (description "The zchunk compressed file format allows splitting a file into independent chunks. This makes it possible to retrieve only changed chunks when downloading a new version of the file, and also makes zchunk files efficient over rsync. Along with the library, this package provides the following utilities: @table @command @item unzck To decompress a zchunk file. @item zck To compress a new zchunk file, or re-compress an existing one. @item zck_delta_size To calculate the difference between two zchunk files. @item zck_gen_zdict To create a dictionary for a zchunk file. @item zck_read_header To read a zchunk header. @item zckdl To download a zchunk file. @end table") (license license:bsd-2))) (define-public zutils (package (name "zutils") (version "1.12") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/zutils/zutils-" version ".tar.lz")) (sha256 (base32 "1vl8mhvsl0zlh34hwhc05vj33a2xfr0w7i978hcwaw8wn1w59bkq")))) (build-system gnu-build-system) (arguments (list #:configure-flags #~(list "--sysconfdir=/etc") #:phases #~(modify-phases %standard-phases (replace 'install (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "install" (string-append "sysconfdir=" #$output "/etc") make-flags)))))) (native-inputs ;; Needed to extract the source tarball and run the test suite. (list lzip)) (home-page "https://www.nongnu.org/zutils/zutils.html") (synopsis "Utilities that transparently operate on compressed files") (description "Zutils is a collection of utilities able to process any combination of compressed and uncompressed files transparently. If any given file, including standard input, is compressed, its decompressed content is used instead. @command{zcat}, @command{zcmp}, @command{zdiff}, and @command{zgrep} are improved replacements for the shell scripts provided by GNU gzip. @command{ztest} tests the integrity of supported compressed files. @command{zupdate} recompresses files with lzip, similar to gzip's @command{znew}. Supported compression formats are bzip2, gzip, lzip, and xz. Zutils uses external compressors: the compressor to be used for each format is configurable at run time, and must be installed separately.") (license (list license:bsd-2 ; arg_parser.{cc,h} license:gpl2+)))) ; the rest (define-public makeself-safeextract (let ((commit "1a95e121fa8e3c02d307ae37b9b7834e616c3683")) (package (name "makeself-safeextract") (version (git-version "0.0.0" "1" commit)) (home-page "https://github.com/ssokolow/makeself_safeextract") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "1anlinaj9lvfi8bn00wp11vzqq0f9sig4fm9yrspisx31v0z4a2c")))) (build-system trivial-build-system) (inputs `(("python" ,python-2) ("p7zip" ,p7zip) ("unzip" ,unzip))) (arguments `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let* ((name "makeself_safeextract") (source (string-append (assoc-ref %build-inputs "source") "/" name ".py")) (bin (string-append (assoc-ref %outputs "out") "/bin")) (target (string-append bin "/" name)) (python (string-append (assoc-ref %build-inputs "python") "/bin")) (7z (search-input-file %build-inputs "/bin/7z")) (unzip (search-input-file %build-inputs "/bin/unzip"))) (setenv "PATH" (string-append (getenv "PATH") ":" python)) (mkdir-p bin) (copy-file source target) (substitute* target (("'7z'") (format #f "'~a'" 7z)) (("'unzip'") (format #f "'~a'" unzip))) (patch-shebang target))))) (synopsis "Extract makeself and mojo archives without running untrusted code") (description "This package provides a script to unpack self-extracting archives generated by @command{makeself} or @command{mojo} without running the possibly untrusted extraction shell script.") (license license:gpl3+)))) (define-public ncompress (package (name "ncompress") (version "5.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/vapier/ncompress") (commit (string-append "v" version)))) (patches (search-patches "ncompress-fix-softlinks.patch")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "090kksxrlqnsdc76fzz2j2ajc98mhmfwyn163ca2ia9niqmlpcm0")))) (arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "BINDIR=" %output "/bin") (string-append "MANDIR=" %output "/share/man/man1")) #:phases (modify-phases %standard-phases (delete 'configure)))) ; no configure script (build-system gnu-build-system) (home-page "https://github.com/vapier/ncompress/") (synopsis "Original Lempel-Ziv compress/uncompress programs") (description "(N)compress provides the original compress and uncompress programs that used to be the de facto UNIX standard for compressing and uncompressing files. These programs implement a fast, simple Lempel-Ziv (LZW) file compression algorithm.") (license license:gpl2+))) (define-public xarchiver (package (name "xarchiver") (version "0.5.4.23") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ib/xarchiver") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0ccxp106c3r759l1bjaszz3fwlw10qzzlsd9mnmpksnlwfwjkmb8")))) (build-system glib-or-gtk-build-system) (native-inputs (list gettext-minimal intltool libxslt pkg-config)) (inputs (list adwaita-icon-theme ; hard-coded theme gtk+)) (home-page "https://github.com/ib/xarchiver") (synopsis "Graphical front-end for archive operations") (description "Xarchiver is a front-end to various command line archiving tools. It uses GTK+ tool-kit and is designed to be desktop-environment independent. Supported formats are 7z, ARJ, bzip2, gzip, LHA, lzma, lzop, RAR, RPM, DEB, tar, and ZIP. It cannot perform functions for archives, whose archiver is not installed.") (license license:gpl2+))) (define-public tarsplitter (package (name "tarsplitter") (version "2.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/AQUAOSOTech/tarsplitter") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "17qkg95r97kcrs17b0mcqswx99280ni47j5yx8xa7nl3bdhm6325")))) (build-system go-build-system) (arguments `(#:import-path "github.com/AQUAOSOTech/tarsplitter" #:install-source? #f #:phases (modify-phases %standard-phases (add-after 'install 'install-documentation (lambda* (#:key import-path outputs #:allow-other-keys) (let* ((source (string-append "src/" import-path)) (out (assoc-ref outputs "out")) (doc (string-append out "/share/doc/" ,name "-" ,version))) (with-directory-excursion source (install-file "README.md" doc)) #t)))))) (home-page "https://github.com/AQUAOSOTech/tarsplitter") (synopsis "Multithreaded tar utility") (description "Archive huge numbers of files, or split massive tar archives into smaller chunks.") (license license:expat))) (define-public c-blosc (package (name "c-blosc") (version "1.21.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Blosc/c-blosc") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0gy9a7wp7x71x5l3rprx8wpb3c5cn7wqc77gdiffq35hr34q88p9")) (modules '((guix build utils))) (snippet ;; In a rare victory, we may delete all bundled libs to no ill effect. '(delete-file-recursively "internal-complibs")))) (build-system cmake-build-system) (arguments `(#:configure-flags '("-DBUILD_STATIC=OFF" "-DDEACTIVATE_AVX2=ON" "-DPREFER_EXTERNAL_LZ4=ON" "-DPREFER_EXTERNAL_ZLIB=ON" "-DPREFER_EXTERNAL_ZSTD=ON"))) (inputs (list lz4 snappy zlib `(,zstd "lib"))) (home-page "https://www.blosc.org/") (synopsis "Blocking, shuffling and lossless compression library") (description "Blosc is a high performance compressor optimized for binary data. It has been designed to transmit data to the processor cache faster than the traditional, non-compressed, direct memory fetch approach via a @code{memcpy()} system call. Blosc is meant not only to reduce the size of large datasets on-disk or in-memory, but also to accelerate memory-bound computations.") ;; Blosc itself is released under BSD-3 but it incorporates code under ;; other non-copyleft licenses. (license license:bsd-3))) (define-public c-blosc2 (package (name "c-blosc2") (version "2.15.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Blosc/c-blosc2") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "17kqwvw2n6bgzidi8f5906s5hc9wm1lbfbpd491gf7csxjck99sx")))) (build-system cmake-build-system) (arguments (list #:configure-flags #~(list "-DBUILD_STATIC=OFF" "-DDEACTIVATE_AVX2=ON" "-DDEACTIVATE_AVX512=ON" "-DPREFER_EXTERNAL_LZ4=ON" "-DPREFER_EXTERNAL_ZLIB=ON" "-DPREFER_EXTERNAL_ZSTD=ON"))) (inputs (list lz4 zlib `(,zstd "lib"))) (home-page "https://blosc.org") (synopsis "Blocking, shuffling and lossless compression library") (description "Blosc is a high performance compressor optimized for binary data (i.e. floating point numbers, integers and booleans, although it can handle string data too). It has been designed to transmit data to the processor cache faster than the traditional, non-compressed, direct memory fetch approach via a @code{memcpy()} system call. Blosc main goal is not just to reduce the size of large datasets on-disk or in-memory, but also to accelerate memory-bound computations. C-Blosc2 is the new major version of C-Blosc, and is backward compatible with both the C-Blosc1 API and its in-memory format. However, the reverse thing is generally not true for the format; buffers generated with C-Blosc2 are not format-compatible with C-Blosc1 (i.e. forward compatibility is not supported).") (license license:bsd-3))) (define-public ecm (package (name "ecm") (version "1.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/alucryd/ecm-tools") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1rvyx5gcy8lfklgj80szlz3312x45wzx0d9jsgwyvy8f6m4nnb0c")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no check target #:make-flags (list (string-append "CC=" ,(cc-for-target)) (string-append "DESTDIR=" (assoc-ref %outputs "out"))) #:phases (modify-phases %standard-phases (replace 'configure (lambda _ (substitute* "Makefile" (("\\$\\(DESTDIR\\)/usr") "$(DESTDIR)")) #t))))) (home-page "https://github.com/alucryd/ecm-tools") (synopsis "Error code modeler") (description "ECM is a utility that converts ECM files, i.e., CD data files with their error correction data losslessly rearranged for better compression, to their original, binary CD format.") (license license:gpl3+))) (define-public libdeflate (package (name "libdeflate") (version "1.19") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ebiggers/libdeflate") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "033d8jcaissiy3mk07wx6dap17c1xl768xy75righ22ggmm7c1hy")))) (build-system cmake-build-system) (arguments (list #:configure-flags #~(list "-DLIBDEFLATE_BUILD_STATIC_LIB=NO" "-DLIBDEFLATE_BUILD_TESTS=YES"))) (inputs (list zlib)) (home-page "https://github.com/ebiggers/libdeflate") (synopsis "Library for DEFLATE/zlib/gzip compression and decompression") (description "Libdeflate is a library for fast, whole-buffer DEFLATE-based compression and decompression. The supported formats are: @enumerate @item DEFLATE (raw) @item zlib (a.k.a. DEFLATE with a zlib wrapper) @item gzip (a.k.a. DEFLATE with a gzip wrapper) @end enumerate ") (license license:expat))) (define-public tarlz (package (name "tarlz") (version "0.21") (source (origin (method url-fetch) (uri (string-append "mirror://savannah/lzip/tarlz/" "tarlz-" version ".tar.lz")) (sha256 (base32 "1x5dw03lcwfigcv97cg70gkbkfycjmv1012s9lwnl4izvl9235qg")))) (build-system gnu-build-system) (native-inputs (list lzip)) (inputs (list lzlib)) (home-page "https://www.nongnu.org/lzip/tarlz.html") (synopsis "Combination of the tar archiver and the lzip compressor") (description "Tarlz is a massively parallel (multi-threaded) combined implementation of the tar archiver and the lzip compressor. Tarlz creates, lists, and extracts archives in a simplified and safer variant of the POSIX pax format compressed with lzip, keeping the alignment between tar members and lzip members. The resulting multimember tar.lz archive is fully backward compatible with standard tar tools like GNU tar, which treat it like any other tar.lz archive. Tarlz can append files to the end of such compressed archives.") (license license:gpl2+))) (define-public libcbor (package (name "libcbor") (version "0.11.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/PJK/libcbor") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "00ibddiy62kbs9wl52c35j0hbqanx6pi7lvzkpzmbsizkj8mhp1p")))) (build-system cmake-build-system) (arguments '(#:configure-flags (let* ((out (assoc-ref %outputs "out")) (lib (string-append out "/lib"))) (list "-DCMAKE_BUILD_TYPE=Release" "-DBUILD_SHARED_LIBS=ON" "-DCBOR_CUSTOM_ALLOC=ON" (string-append "-DCMAKE_INSTALL_LIBDIR=" lib) (string-append "-DCMAKE_INSTALL_RPATH=" lib))))) (synopsis "The C library for parsing and generating CBOR") (description "@acronym{CBOR, The Concise Binary Object Representation} is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.") (license license:expat) (home-page "https://github.com/PJK/libcbor"))) (define-public lzfse (package (name "lzfse") (version "1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/lzfse/lzfse") (commit (string-append "lzfse-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5")))) (build-system cmake-build-system) (home-page "https://github.com/lzfse/lzfse") (synopsis "LZFSE compression library and command line tool") (description "LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding. It targets similar compression rates at higher compression and decompression speed compared to Deflate using Zlib.") (license license:bsd-3))) (define-public fcrackzip (package (name "fcrackzip") (version "1.0") (source (origin (method url-fetch) (uri (string-append "http://oldhome.schmorp.de/marc/data/" "fcrackzip-" version ".tar.gz")) (sha256 (base32 "0l1qsk949vnz18k4vjf3ppq8p497966x4c7f2yx18x8pk35whn2a")))) (build-system gnu-build-system) (arguments (list #:phases '(modify-phases %standard-phases (add-after 'unpack 'fix-reference-to-unzip (lambda _ (substitute* "main.c" (("\"unzip") (string-append "\"" (which "unzip"))))))))) (inputs (list perl unzip)) (home-page "http://oldhome.schmorp.de/marc/fcrackzip.html") (synopsis "Zip password cracker") (description "Fcrackzip is a Zip file password cracker.") (license license:gpl2+))) (define-public unrar-free (package (name "unrar-free") (version "0.3.1") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.com/bgermann/unrar-free") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1qf2fdr4bl10kys2fsb6090r9xj0ascrk7pn0iklsv1ajwcql3qf")))) (build-system gnu-build-system) (native-inputs (list autoconf automake pkg-config)) (inputs (list libarchive)) (home-page "https://gitlab.com/bgermann/unrar-free") (synopsis "Extract files from RAR archives") (description "@code{unrar-free} is a free software version of the non-free @code{unrar} utility. This program is a simple command-line front-end to libarchive, and can list and extract not only RAR archives but also other formats supported by libarchive. It does not rival the non-free @code{unrar} in terms of features, but special care has been taken to ensure it meets most user's needs.") (license license:gpl2+))) (define-public miniz (package (name "miniz") (version "3.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/richgel999/miniz") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0672q35vjrpakmsr1gwj9k5fwv5ihzhahm19bq4y74wqpn91p7fw")))) (build-system cmake-build-system) (arguments (list #:configure-flags ''("-DBUILD_SHARED_LIBS=ON") ;; No tests #:tests? #f)) (home-page "https://github.com/richgel999/miniz") (synopsis "Independent implementation of zlib and Deflate compression") (description "Miniz is a lossless data compression library that implements the zlib (RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly used functions exported by the zlib library.") (license license:expat))) (define-public miniz-for-pytorch (package (inherit miniz) (version "pytorch-2.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/richgel999/miniz") (commit "2.2.0"))) (file-name (git-file-name (package-name miniz) version)) (sha256 (base32 "09j9ihigfsavgcmk8l36zmbjvdf1x1w7h2v4rkww1qk1sb43y5zf")) (patches (search-patches "miniz-for-pytorch.patch")))) (arguments (substitute-keyword-arguments (package-arguments miniz) ((#:configure-flags flags '()) ;; The changes break the examples. `(cons "-DBUILD_EXAMPLES=OFF" ,flags)))) (properties '((hidden? . #t)))))