diff options
author | Andy Tai <atai@atai.org> | 2024-09-04 00:24:24 -0700 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-09-19 13:15:27 +0200 |
commit | 26643fa2756e02e13e92e86dfffac35926e037ba (patch) | |
tree | a5c705d9ec7ecdc315e47d52345cf3f3d0d3bcdb | |
parent | 9b66aaa7cc616a1950d233dd3a97e7eb529d2228 (diff) | |
download | guix-26643fa2756e02e13e92e86dfffac35926e037ba.tar guix-26643fa2756e02e13e92e86dfffac35926e037ba.tar.gz |
gnu: Add gnudos.
* gnu/packages/mc.scm (gnudos): New variable.
Change-Id: I03a101be81bba3e4fdf8e11a7b4a799b92f86ad0
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/mc.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/mc.scm b/gnu/packages/mc.scm index dc909ed7e1..07925328b5 100644 --- a/gnu/packages/mc.scm +++ b/gnu/packages/mc.scm @@ -120,3 +120,26 @@ RPM package files and other archives and managing files on other computers via FTP or FISH. It also includes a powerful text editor for opening text files.") (license gpl3+))) + + +(define-public gnudos + (package + (name "gnudos") + (version "2.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnu/gnudos/gnudos-" version ".tar.gz")) + (sha256 + (base32 "06n4n6j7w6f54akmqqmsrbxv5rj6xairc6yskm33ag2ar7w8hz48")))) + (build-system gnu-build-system) + (propagated-inputs (list ncurses)) + (home-page "https://www.gnu.org/software/gnudos/") + (synopsis "MS-DOS-like file manager, editor, and other tools") + (description + "GnuDOS is a set of programs designed to help new users of the GNU +system in growing accustomed to the system, particularly users who might be +coming from a DOS background. It consists of a file manager, a text editor +and a form designer for the console as well as a core library for building +similar utilities.") + (license gpl3+))) |