mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 20:10:39 +02:00
gnu: Add go-github-com-pkg-term.
* gnu/packages/golang-xyz.scm (go-github-com-pkg-term): New variable. Change-Id: I23f0be5c38b51967d0b18b649148bb5130522c03
This commit is contained in:
parent
f4fac34440
commit
cd64a71124
1 changed files with 35 additions and 0 deletions
|
@ -10031,6 +10031,41 @@ Pion}.")
|
||||||
"This package provides a Go library to create and print diffs.")
|
"This package provides a Go library to create and print diffs.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-pkg-term
|
||||||
|
(package
|
||||||
|
(name "go-github-com-pkg-term")
|
||||||
|
(version "1.2.0-beta.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pkg/term")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1fflh4lglbvdz8949h8spbw3vwdldgnl6zgps4ylzzr40hhyvgf5"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/pkg/term"
|
||||||
|
#:test-flags
|
||||||
|
#~(list "-skip"
|
||||||
|
(string-join
|
||||||
|
;; Tests fail with error: inappropriate ioctl for device.
|
||||||
|
(list "TestTiocmbic"
|
||||||
|
"TestTiocmbis"
|
||||||
|
"TestTiocmget"
|
||||||
|
"TestTiocmset")
|
||||||
|
"|"))))
|
||||||
|
(propagated-inputs (list go-golang-org-x-sys))
|
||||||
|
(home-page "https://github.com/pkg/term")
|
||||||
|
(synopsis "Manages POSIX terminals from Golang")
|
||||||
|
(description
|
||||||
|
"Package term manages POSIX terminals. As POSIX terminals are connected
|
||||||
|
to, or emulate, a UART, this package also provides control over the various
|
||||||
|
UART and serial line parameters.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public go-github-com-pkg-xattr
|
(define-public go-github-com-pkg-xattr
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-pkg-xattr")
|
(name "go-github-com-pkg-xattr")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue