gnu: oksh: Update to 7.5.
* gnu/packages/shells.scm (oksh): Update to 7.5. [source]: Download from github official portable oksh project. [home-page]: Updated to maintaners url. [synopsis, description]: Improved with text from oksh README. [license]: Fixed license. Change-Id: I06f7b6210b6d725678452c5130b09c3fb382ebca Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
432a6ece6b
commit
a4e7a756b2
@ -25,6 +25,7 @@
|
|||||||
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
;;; Copyright © 2023 Jaeme Sifat <jaeme@runbox.com>
|
||||||
;;; Copyright © 2024 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2024 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
|
||||||
|
;;; Copyright © 2024 Luís Henriques <henrix@camandro.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
@ -820,25 +821,32 @@ A @code{andglob} program is also provided along with s.")
|
|||||||
(define-public oksh
|
(define-public oksh
|
||||||
(package
|
(package
|
||||||
(name "oksh")
|
(name "oksh")
|
||||||
(version "0.5.9")
|
(version "7.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://connochaetos.org/oksh/oksh-"
|
(uri (string-append
|
||||||
version ".tar.gz"))
|
"https://github.com/ibara/oksh/releases/download/oksh-"
|
||||||
|
version "/oksh-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ln9yf6pxngsviqszv8klnnvn8vcpplvj1njdn8xr2y8frkbw8r3"))))
|
"0pgdxvy8jgydsyzk7vcc93pm09bihqvrn3i35gz1ncg9z31rbf20"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(; The test files are not part of the distributed tarball.
|
`(#:tests? #f)) ; there are no tests available
|
||||||
#:tests? #f))
|
(home-page "https://github.com/ibara/oksh")
|
||||||
(home-page "https://connochaetos.org/oksh")
|
(synopsis "Portable OpenBSD Korn Shell")
|
||||||
(synopsis "Port of OpenBSD Korn Shell")
|
|
||||||
(description
|
(description
|
||||||
"Oksh is a port of the OpenBSD Korn Shell.
|
"Oksh is a portable OpenBSD ksh. Not an official OpenBSD project.
|
||||||
The OpenBSD Korn Shell is a cleaned up and enhanced ksh.")
|
Unlike other ports of OpenBSD ksh, this port is entirely self-contained
|
||||||
(license license:gpl3+)))
|
and aims to be maximally portable across operating systems and C compilers.")
|
||||||
|
(license (list license:public-domain
|
||||||
|
;; asprintf.c, issetugid.c, reallocarray.c, sh.1,
|
||||||
|
;; strlcat.c, strlcpy.c, strtonum.c
|
||||||
|
license:isc
|
||||||
|
;; confstr.c, siglist.c, signame.c, sys-queue.h, unvis.c,
|
||||||
|
;; vis.c, vis.h
|
||||||
|
license:bsd-3))))
|
||||||
|
|
||||||
(define-public loksh
|
(define-public loksh
|
||||||
(package
|
(package
|
||||||
|
Loading…
Reference in New Issue
Block a user