Package: guix-patches;
Reported by: Dhruvin Gandhi <contact <at> dhruvin.dev>
Date: Tue, 12 Apr 2022 12:11:01 UTC
Severity: normal
Tags: patch
Done: Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
Bug is archived. No further changes may be made.
Message #11 received at 54882 <at> debbugs.gnu.org (full text, mbox):
From: Dhruvin Gandhi <contact <at> dhruvin.dev> To: 54882 <at> debbugs.gnu.org Cc: Dhruvin Gandhi <contact <at> dhruvin.dev> Subject: [PATCH 2/2] gnu: Add hut. Date: Tue, 12 Apr 2022 17:53:19 +0530
* gnu/packages/golang.scm (hut): New variable. --- gnu/packages/golang.scm | 143 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 143 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 782e0c9ef5..f46b1ae78f 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -9776,3 +9776,146 @@ (define-public go-github-com-go-chi-chi-v5 "@code{go-github-com-go-chi-chi-v5} is an HTTP router that lets the user decompose request handling into many smaller layers.") (license license:expat))) + +(define-public go-github-com-google-shlex + (package + (name "go-github-com-google-shlex") + (version "0.0.0-20191202100458-e7afc7fbc510") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/google/shlex") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14z8hqyik910wk2qwnzgz8mjsmiamxa0pj55ahbv0jx6j3dgvzfm")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/google/shlex")) + (home-page "https://github.com/google/shlex") + (synopsis "shlex") + (description + "Package shlex implements a simple lexer which splits input in to tokens using +shell-style rules for quoting and commenting.") + (license license:asl2.0))) + +(define-public go-git-sr-ht--emersion-go-scfg + (package + (name "go-git-sr-ht--emersion-go-scfg") + (version "0.0.0-20211215104734-c2c7a15d6c99") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~emersion/go-scfg") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02gn8hz8zfv8y0krysx2wv951gw8hmhdfqf1ysidwm7i293365w4")))) + (build-system go-build-system) + (arguments '(#:import-path "git.sr.ht/~emersion/go-scfg")) + (propagated-inputs + `(("go-github-com-google-shlex" ,go-github-com-google-shlex) + ("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew))) + (home-page "https://git.sr.ht/~emersion/go-scfg") + (synopsis "go-scfg") + (description "Package scfg parses configuration files.") + (license license:expat))) + +(define-public go-git-sr-ht--emersion-gqlclient + (package + (name "go-git-sr-ht--emersion-gqlclient") + (version "0.0.0-20220202181617-4e6e9c763dd2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~emersion/gqlclient") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1d9hmaz7yy02bk455gmaav818xi49sw69jyx6dxzymv6ln7r1cv1")))) + (build-system go-build-system) + (arguments '(#:import-path "git.sr.ht/~emersion/gqlclient")) + (home-page "https://git.sr.ht/~emersion/gqlclient") + (synopsis "gqlclient") + (description + "This package provides a GraphQL client and code generator for Go.") + (license license:expat))) + +(define-public go-github-com-juju-ansiterm + (package + (name "go-github-com-juju-ansiterm") + (version "0.0.0-20210929141451-8b71cc96ebdc") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/juju/ansiterm") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05mk7mlvg11dd6b0j0wlq547ghbmx2ywwrlbcb4kddpg7qaqp1va")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/juju/ansiterm")) + (propagated-inputs + `(("go-gopkg-in-check-v1" ,go-gopkg-in-check-v1) + ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty) + ("go-github-com-mattn-go-colorable" ,go-github-com-mattn-go-colorable) + ("go-github-com-lunixbochs-vtclean" + ,go-github-com-lunixbochs-vtclean))) + (home-page "https://github.com/juju/ansiterm") + (synopsis "ansiterm") + (description + "Package ansiterm provides a Writer that writes out the ANSI escape codes for +color and styles.") + (license license:lgpl3))) + +(define-public go-github-com-lunixbochs-vtclean + (package + (name "go-github-com-lunixbochs-vtclean") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lunixbochs/vtclean") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0jqn33l1kzy4dk66zbvxz7rlgkgg34s9mhc8z0lrz0i88466zhd8")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/lunixbochs/vtclean")) + (home-page "https://github.com/lunixbochs/vtclean") + (synopsis "vtclean") + (description + "Clean up raw terminal output by stripping escape sequences, optionally +preserving color.") + (license license:expat))) + +(define-public hut + (package + (name "hut") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.sr.ht/~emersion/hut") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15ag8fibnahcfgd0w2j4k813z10ymi39rx8d3c8b9955zc62p1fr")))) + (build-system go-build-system) + (arguments '(#:import-path "git.sr.ht/~emersion/hut")) + (propagated-inputs + `(("go-golang-org-x-term" ,go-golang-org-x-term) + ("go-golang-org-x-oauth2" ,go-golang-org-x-oauth2) + ("go-github-com-spf13-cobra" ,go-github-com-spf13-cobra) + ("go-github-com-juju-ansiterm" ,go-github-com-juju-ansiterm) + ("go-git-sr-ht--emersion-gqlclient" ,go-git-sr-ht--emersion-gqlclient) + ("go-git-sr-ht--emersion-go-scfg" ,go-git-sr-ht--emersion-go-scfg))) + (home-page "https://git.sr.ht/~emersion/hut") + (synopsis "CLI tool for sr.ht") + (description "This package provides a CLI tool for sr.ht.") + (license license:agpl3))) -- 2.35.1
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.