diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2021-01-16 02:17:35 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2021-01-16 02:18:26 +0100 |
commit | 74a83afdf5d518b812d939c394eb259c0fa5aa88 (patch) | |
tree | 80326169b330a1fd1da7a767d68ccc4905304f9f | |
parent | 884f320e7ceb35cb8472510e47fc5f1944675d82 (diff) | |
download | guix-74a83afdf5d518b812d939c394eb259c0fa5aa88.tar.gz guix-74a83afdf5d518b812d939c394eb259c0fa5aa88.zip |
gnu: Add lrzsz.
* gnu/packages/admin.scm (lrzsz): New variable.
-rw-r--r-- | gnu/packages/admin.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index fad2de7255..4be5a17a57 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -4306,3 +4306,30 @@ This program allows you to view and manipulate this EEPROM list.") (home-page "https://github.com/xobs/novena-eeprom/") (supported-systems '("armhf-linux")) (license license:bsd-3))) + +(define-public lrzsz + (package + (name "lrzsz") + (version "0.12.20") + (source (origin + (method url-fetch) + (uri (string-append "https://www.ohse.de/uwe/releases/lrzsz-" + version ".tar.gz")) + (sha256 + (base32 + "1wcgfa9fsigf1gri74gq0pa7pyajk12m4z69x7ci9c6x9fqkd2y2")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'configure + (lambda* (#:key outputs #:allow-other-keys) + (setenv "CONFIG_SHELL" (which "bash")) + (invoke "./configure" + (string-append "--prefix=" + (assoc-ref outputs "out")))))))) + (synopsis "Implementation of XMODEM/YMODEM/ZMODEM transfer protocols") + (description "This package provides programs that transfer files using +the XMODEM/YMODEM/ZMODEM file transfer protocols.") + (home-page "https://ohse.de/uwe/software/lrzsz.html") + (license license:gpl2+))) |