From 8fbd4cdba29739b57e6e4b4ed57ff124ac13b295 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 2 Jun 2025 12:19:19 +0200 Subject: [PATCH] gnu: Add go-github-com-netflix-go-expect. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang-xyz.scm (go-github-com-netflix-go-expect): New variable. Co-authored-by: Ludovic Courtès Change-Id: I241dd1f6861522f487bc80a00b9f60d7c391207c --- gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index df502d4963b..2f1c28fbec3 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12831,6 +12831,34 @@ very fast, and tries to be entropy pool friendly.") and parsing.") (license license:expat))) +(define-public go-github-com-netflix-go-expect + (package + (name "go-github-com-netflix-go-expect") + (version "0.0.0-20220104043353-73e0943537d2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Netflix/go-expect") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zkvhnc4ii6ygvcsj54ng0kql26rnny7l3hy1w61g88mxjsww1b9")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/Netflix/go-expect")) + (propagated-inputs (list go-github-com-stretchr-testify + go-github-com-creack-pty)) + (home-page "https://github.com/Netflix/go-expect") + (synopsis "Control applications with an Expect-like interface in Go") + (description + "Package expect provides an expect-like interface to automate control of +applications. It is unlike expect in that it does not spawn or manage process +lifecycle. This package only focuses on expecting output and sending input +through it's psuedoterminal.") + (license license:asl2.0))) + (define-public go-github-com-neurosnap-sentences (package (name "go-github-com-neurosnap-sentences")