Hi Leo ! I linted and built all your 4 patches. No errors. If there's anything else you'd like me to try, let me know LGTM ! 😀 2017-12-29 21:52 GMT+01:00 Leo Famulari : > * gnu/packages/curl.scm (kurly): New variable. > --- > gnu/packages/curl.scm | 31 +++++++++++++++++++++++++++++++ > 1 file changed, 31 insertions(+) > > diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm > index 49703c092..4b40dda58 100644 > --- a/gnu/packages/curl.scm > +++ b/gnu/packages/curl.scm > @@ -25,10 +25,13 @@ > #:use-module ((guix licenses) #:prefix license:) > #:use-module (guix packages) > #:use-module (guix download) > + #:use-module (guix git-download) > #:use-module (guix utils) > #:use-module (guix build-system gnu) > + #:use-module (guix build-system go) > #:use-module (gnu packages) > #:use-module (gnu packages compression) > + #:use-module (gnu packages golang) > #:use-module (gnu packages groff) > #:use-module (gnu packages gsasl) > #:use-module (gnu packages libidn) > @@ -135,3 +138,31 @@ tunneling, and so on.") > (sha256 > (base32 > "0y3qbjjcxhcvm1yawp3spfssjbskv0g6gyzld6ckif5pf8ygvxpm")))))) > + > +(define-public kurly > + (package > + (name "kurly") > + (version "1.1.0") > + (source (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/davidjpeacock/kurly.git") > + (commit (string-append "v" version)))) > + (sha256 > + (base32 > + "1q192f457sjypgvwq7grrf8gq8w272 > p3zf1d5ppc20mriqm0mbc3")))) > + (build-system go-build-system) > + (arguments > + '(#:import-path "github.com/davidjpeacock/kurly")) > + (inputs > + `(("go-github-com-alsm-ioprogress" ,go-github-com-alsm-ioprogress) > + ("go-github-com-aki237-nscjar" ,go-github-com-aki237-nscjar) > + ("go-github-com-davidjpeacock-cli" ,go-github-com-davidjpeacock- > cli))) > + (synopsis "Command-line HTTP client") > + (description "kurly is an alternative to the widely popular curl > +program, written in Go. kurly is designed to operate in a similar > +manner to curl, with select features. Notably, kurly is not aiming for > +feature parity, but common flags and mechanisms particularly within the > +HTTP(S) realm are to be expected.") > + (home-page "https://github.com/davidjpeacock/kurly") > + (license license:asl2.0))) > -- > 2.15.1 > > > > >