mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: loksh: Update to 7.3.
* gnu/packages/shells.scm (loksh): Update to 7.3. [source]: Update style. Signed-off-by: Sören Tempel <soeren@soeren-tempel.net> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f4170f67ce
commit
6a01add770
1 changed files with 16 additions and 18 deletions
|
@ -788,26 +788,24 @@ (define-public oksh
|
|||
(define-public loksh
|
||||
(package
|
||||
(name "loksh")
|
||||
(version "6.9")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/dimkr/loksh")
|
||||
(commit version)
|
||||
;; Include the ‘lolibc’ submodule, a static compatibility library
|
||||
;; created for and currently used only by loksh.
|
||||
(recursive? #t)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0x33plxqhh5202hgqidgccz5hpg8d2q71ylgnm437g60mfi9z0px"))))
|
||||
(version "7.3")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/dimkr/loksh")
|
||||
(commit version)
|
||||
;; Include the ‘lolibc’ submodule, a static compatibility library
|
||||
;; created for and currently used only by loksh.
|
||||
(recursive? #t)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1miydvb79wagckchinp189l8i81f08lqajg5jngn77m4x4gwjf3n"))))
|
||||
(build-system meson-build-system)
|
||||
(inputs
|
||||
(list ncurses))
|
||||
(native-inputs
|
||||
(list pkg-config))
|
||||
(inputs (list ncurses))
|
||||
(native-inputs (list pkg-config))
|
||||
(arguments
|
||||
`(#:tests? #f)) ; no tests included
|
||||
`(#:tests? #f)) ;no tests included
|
||||
(home-page "https://github.com/dimkr/loksh")
|
||||
(synopsis "Korn Shell from OpenBSD")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue